summaryrefslogtreecommitdiff
path: root/templates/comment_moderation_page.html
blob: ff708cb1c52793e34303510344bb4c2116f55e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{.section head}
<link rel="stylesheet" type="text/css" href="/style/journal.css" />
{.end}

{.section body}
  <h1 id="main-title">{site-name|html}</h1>
  <div id="main-subtitle">{title}</div>

  {.repeated section comments}
  <div class="comment-for-moderation" style="border: 1px solid #444; margin: 10px; padding: 5px;">
    <form id="editing-form" method="POST" accept-charset="UTF-8">
      <input type="hidden" name="revision-id" value="{revision-id}" />
      <div>
        <input type="submit" name="mark-as-spam" value="{spam-label|html-attr-value}" /> |
        <input type="submit" name="reject" value="{reject-label|html-attr-value}" /> |
        <input type="submit" name="approve" value="{approve-label|html-attr-value}" />
      </div>
    </form>

    <p>
      Comment on article
      <a href="{article.link|html-attr-value}">“{article.title}”</a>:
    </p>
    {@|comment-html}
  </div>
  {.end}
{.end}