summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2011-03-14 21:05:18 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2011-03-14 21:05:18 +0100
commit29ec6a5994b48330e2fe99a746bf105dd766f96f (patch)
treedacd7a837b7a35f9832ab8d878115a810150fb70 /templates
parentc845cf1dd1ee012121954799169a5c60581494bd (diff)
Add article summary page.
Diffstat (limited to 'templates')
-rw-r--r--templates/article_summary_page.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/templates/article_summary_page.html b/templates/article_summary_page.html
new file mode 100644
index 0000000..f2b222a
--- /dev/null
+++ b/templates/article_summary_page.html
@@ -0,0 +1,44 @@
+{.section head}
+ <link href="/style/admin.css" rel="stylesheet" type="text/css"/>
+{.end}
+
+{.section body}
+<table>
+ <thead>
+ <th>{id-label}</th>
+ <th>{aliases-label}</th>
+ <th>{branch-label}</th>
+ <th>{branch-title-label}</th>
+ <th>{date-label}</th>
+ <th>{characteristics-label}</th>
+ </thead>
+
+ <tbody>
+ {.repeated section articles}
+ <tr class="major-row">
+ <td class="article-id"
+ rowspan="{revision-num|html-attr-value}">{id|html}</td>
+ <td class="article-aliases"
+ rowspan="{revision-num|html-attr-value}">
+ {.repeated section aliases}
+ {@|html}
+ {.alternates with}
+ <br />
+ {.end}
+ </td>
+ {.repeated section revisions}
+ <td class="revision-id">{id|html}</a></td>
+ <td class="revision-title">
+ <a href="{link|html-attr-value}">{title|html}</a>
+ </td>
+ <td class="revision-date">{date|html}</td>
+ <td class="revision-characteristics">{characteristics|html}</td>
+ {.alternates with}
+ </tr>
+ <tr class="minor-row">
+ {.end}
+ </tr>
+ {.end}
+ </tbody>
+</table>
+{.end}