aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/anews.html4
-rw-r--r--static/index.html3
2 files changed, 5 insertions, 2 deletions
diff --git a/static/anews.html b/static/anews.html
index 6527ce5..127760a 100644
--- a/static/anews.html
+++ b/static/anews.html
@@ -26,7 +26,9 @@
{{ range $i, $e := .NewsItems }}
<tr>
- <td><a href="/news/{{.Time}}">{{unixtoreadable $e.Time}} - {{$e.Title}}</a>
+ <td>
+ {{ if $.Board.ModCred }}<a href="/{{ $.Key }}/newsdelete/{{ $e.Time }}">[Delete] </a>{{end}}
+ <a href="/news/{{.Time}}">{{unixtoreadable $e.Time}} - {{$e.Title}}</a>
{{ if eq $i 0 }}
<br><p>{{$e.Content}}</p>
{{ end }}
diff --git a/static/index.html b/static/index.html
index 106a6b3..61aeab8 100644
--- a/static/index.html
+++ b/static/index.html
@@ -44,7 +44,8 @@
{{ range $i, $e := .NewsItems }}
<tr>
- <td><a href="/news/{{.Time}}">{{unixtoreadable $e.Time}} - {{$e.Title}}</a>
+ <td>{{ if $.Board.ModCred }}<a href="/{{ $.Key }}/newsdelete/{{ $e.Time }}">[Delete] </a>{{end}}
+ <a href="/news/{{.Time}}">{{unixtoreadable $e.Time}} - {{$e.Title}}</a>
{{ if eq $i 0 }}
<br><p>{{$e.Content}}</p>
{{ end }}