diff options
author | knotteye <knotteye@airmail.cc> | 2021-07-02 15:10:49 -0500 |
---|---|---|
committer | knotteye <knotteye@airmail.cc> | 2021-07-02 15:10:49 -0500 |
commit | fab8de7187571a4f3f8a30966057d661a858b645 (patch) | |
tree | d050426e46e47c6d4e4e8951dcd5bf914e919fc8 /static/anews.html | |
parent | faae38726dd804e3246514d88f93794c23a0cdb2 (diff) |
add deletion of news items
Diffstat (limited to 'static/anews.html')
-rw-r--r-- | static/anews.html | 4 |
1 files changed, 3 insertions, 1 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 }} |