diff options
Diffstat (limited to 'templates/article_summary_page.html')
-rw-r--r-- | templates/article_summary_page.html | 44 |
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} |