summaryrefslogtreecommitdiff
path: root/src/http/tpl/draft-posts-manage.html
blob: 417f716dbac36b137f7b9f91e75d406886cd6dc4 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
{{ define "body" }}

  {{ $page := .GetQueryIntValue "page" 0 -}}
  {{ $getPostsRes := .GetDraftPosts $page 20 -}}

  <script>
    function confirmDelete(event) {
      if (!confirm("Are you sure you want to delete this draft?"))
        event.preventDefault();
    }
  </script>

  <p>
    <a href="{{ .RootURL.Path "admin" }}">Back to Admin</a>
  </p>

  <h1>Drafts</h1>

  <p>
    <a href="{{ .RootURL.Drafts.MethodEdit }}">New Draft</a>
  </p>

  {{ if gt $page 0 }}
  <p>
    <a href="{{ .RootURL.Drafts.MethodManage.Page (.Add $page -1) }}">&lt; &lt; Previous Page</a>
  </p>
  {{ end }}

  <table>

    {{ range $getPostsRes.Posts }}
      <tr>
        <td>{{ .Title }}</td>
        <td>
          <a href="{{ ($.RootURL.Draft .ID).MethodEdit }}">
            Edit
          </a>
        </td>
        <td>
          <form
            action="{{ ($.RootURL.Draft .ID).MethodDelete }}"
            method="POST"
            >
            <input
              type="submit"
              value="Delete"
              onclick="confirmDelete(event)"
              />
          </form>
        </td>
      </tr>
    {{ end }}

  </table>

  {{ if $getPostsRes.HasMore }}
  <p>
    <a href="{{ .RootURL.Drafts.MethodManage.Page (.Add $page 1) }}">Next Page &gt; &gt;</a>
  </p>
  {{ end }}

{{ end }}

{{ template "base.html" . }}