diff options
author | FChannel <=> | 2021-02-03 23:50:10 -0800 |
---|---|---|
committer | FChannel <=> | 2021-02-03 23:50:10 -0800 |
commit | f6eecc720abaefb954fda9a26aab78bb1d706ba4 (patch) | |
tree | 6dcf0b4025943309f0d5bc63d71e358f2653d787 /static/npost.html | |
parent | 3e42ce191ed9a72ed8aa69ee7819a20bb4d23048 (diff) |
sorted board list
Diffstat (limited to 'static/npost.html')
-rw-r--r-- | static/npost.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/npost.html b/static/npost.html index 6c837cf..b91b795 100644 --- a/static/npost.html +++ b/static/npost.html @@ -26,7 +26,7 @@ {{ $replies := (index .Posts 0).Replies }} <span style="float: right;">{{ $replies.TotalItems }} / {{ $replies.TotalImgs }}</span> <div style="width: 500px; margin: 0 auto; text-align: center;"> - <span ><a id="reply-content" href="javascript:quote('{{ $board.Actor }}', '{{ (index .Posts 0).Id }}', 'reply')">[Post a Reply]</a></span> + <span ><a id="reply-content" href="javascript:quote('{{ $board.Actor.Id }}', '{{ (index .Posts 0).Id }}', 'reply')">[Post a Reply]</a></span> </div> <hr> {{ end }} @@ -34,6 +34,6 @@ {{ define "script" }} <script src="/static/js/footerscript.js"></script> <script> - viewLink("{{ .Board.Name }}", "{{ .Board.Actor }}") + viewLink("{{ .Board.Name }}", "{{ .Board.Actor.Id }}") </script> {{ end }} |