blob: ad9c9d789000766495e78f18907dcc854de70c98 (
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
65
66
67
|
{{ define "body" }}
{{ $page := .GetQueryIntValue "page" 0 -}}
{{ $getPostsRes := .GetPosts $page 20 -}}
<script>
function confirmDelete(event) {
if (!confirm("Are you sure you want to delete this post?"))
event.preventDefault();
}
</script>
<p>
<a href="{{ .RootURL.Path "admin" }}">Back to Admin</a>
</p>
<h1>Posts</h1>
{{ if gt $page 0 }}
<p>
<a href="{{ .RootURL.Posts.MethodManage.Page (.Add $page -1) }}">< < Previous Page</a>
</p>
{{ end }}
<table>
<colgroup>
<col span="1" style="width: auto;">
<col span="1" style="width: auto;">
<col span="1" style="width: 5rem;">
<col span="1" style="width: auto;">
</colgroup>
{{ range $getPostsRes.Posts }}
<tr>
<td>{{ .PublishedAt.Local.Format "2006-01-02 15:04:05 MST" }}</td>
<td><a href="{{ $.RootURL.Post .ID }}">{{ .Title }}</a></td>
<td>
<a href="{{ ($.RootURL.Post .ID).MethodEdit }}">
Edit
</a>
</td>
<td>
<form
action="{{ ($.RootURL.Post .ID).MethodDelete }}"
method="POST"
>
<input
type="submit"
value="Delete"
onclick="confirmDelete(event)"
/>
</form>
</td>
</tr>
{{ end }}
</table>
{{ if $getPostsRes.HasMore }}
<p>
<a href="{{ .RootURL.Posts.MethodManage.Page (.Add $page 1) }}">Next Page > ></a>
</p>
{{ end }}
{{ end }}
{{ template "base.html" . }}
|