aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/admin.html
blob: c4c83c59fff70d829e7543b9bc68c6388f0aad8c (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{{ define "body" }}
  <main id="content">
    <div class="introduction">
      <h1>Administration</h1>
      <p>
        Panel d'administration très simple. Il affiche les stats et possiblement les webmentions et autre contenu à
        modérer.
      </p>
    </div>
    <article>
      <h2>Stats</h2>
      <h3>Visits</h3>
      <table>
        <thead>
          <tr>
            <th>Target</th>
            <th>Visits</th>
          </tr>
        </thead>
        <tbody>
          {{ range .Visits }}
            <tr>
              <td>{{ .Target }}</td>
              <td>{{ .Visit }}</td>
            </tr>
          {{ end }}
        </tbody>
      </table>
      <h3>Origin</h3>
      <table>
        <thead>
          <tr>
            <th>Origin</th>
            <th>Target</th>
            <th>Visits</th>
          </tr>
        </thead>
        <tbody>
          {{ range .Rows }}
            <tr>
              <td>{{ .Origin }}</td>
              <td>{{ .Target }}</td>
              <td>{{ .Visit }}</td>
            </tr>
          {{ end }}
        </tbody>
      </table>
      <div class="pagination">{{ template "pagination" . }}</div>
    </article>
  </main>
{{ end }}