aboutsummaryrefslogtreecommitdiffstats
path: root/template/domain-list.html
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem.moulin@fripost.org>2012-09-03 00:05:22 +0200
committerGuilhem Moulin <guilhem.moulin@fripost.org>2012-09-03 00:05:22 +0200
commit3c8b9dba04da6d66f7e592c3c1367a2367e1c5a5 (patch)
tree57739942759a34ba245f076c2bde0a596adf5e9c /template/domain-list.html
parent742c9938af740b9ba758f4b03909f30106b285a5 (diff)
Domain edition.
Diffstat (limited to 'template/domain-list.html')
-rw-r--r--template/domain-list.html42
1 files changed, 0 insertions, 42 deletions
diff --git a/template/domain-list.html b/template/domain-list.html
deleted file mode 100644
index fcc7b23..0000000
--- a/template/domain-list.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!DOCTYPE html>
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
- <title>Domain names for <TMPL_VAR NAME=USER></title>
- <link href="/css/style.css" media="all" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="header">
- <div class="left column">
- Root /
- </div>
- <div class="right column">
- Logged as <a href="<TMPL_VAR NAME=URL>/<TMPL_VAR NAME=USER_DOMAINPART>/<TMPL_VAR NAME=USER_LOCALPART>/?a=edit"
- ><TMPL_VAR NAME=USER_LOCALPART>@<TMPL_VAR NAME=USER_DOMAINPART></a>
- | <a href="<TMPL_VAR NAME=URL>/?a=logout">Log out</a>
- </div>
- <br/>
- </div>
- <h1>Manage domains</h1>
- <table class="list">
- <thead>
- <tr class="odd">
- <th>Domain (<a href="<TMPL_VAR NAME=URL>/?a=AddDomain">add</a>)</th>
- <th>Permissions</th>
- <th>Description</th>
- <th>Active?</th>
- </tr>
- </thead>
- <tbody>
- <TMPL_LOOP NAME=DOMAINS>
- <TMPL_IF NAME=__even__><tr class="odd"><TMPL_ELSE><tr></TMPL_IF>
- <td><a href="<TMPL_VAR NAME=URL>/<TMPL_VAR NAME=DOMAIN>/"><TMPL_VAR NAME=DOMAIN></a></td>
- <td><TMPL_IF NAME=PERMS><TMPL_VAR NAME=PERMS><TMPL_ELSE><span class="none">(none)</span></TMPL_IF></td>
- <td><TMPL_IF NAME=DESCRIPTION><TMPL_VAR NAME=DESCRIPTION><TMPL_ELSE><span class="none">(none)</span></TMPL_IF></td>
- <td><TMPL_IF NAME=ISACTIVE><span class="active">&#x2714;</span><TMPL_ELSE><span class="nonactive">&#x2718;</span></TMPL_IF></td>
- </tr>
- </TMPL_LOOP>
- </tbody>
- </table>
- </body>
-</html>