diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-18 18:39:17 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-18 18:39:17 -0700 |
commit | 3823ffa6616339ef26478f52e9601735a9ec961e (patch) | |
tree | 6756722b63034708e5289caaf87583da761f9134 | |
parent | b0c1df4e544137fcbe1641641660a8c5f49d63f0 (diff) |
enriching admin view with more post info per post item
-rw-r--r-- | system/admin/handlers.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/system/admin/handlers.go b/system/admin/handlers.go index 07cfb6d..c30e597 100644 --- a/system/admin/handlers.go +++ b/system/admin/handlers.go @@ -437,6 +437,8 @@ func adminPostListItem(p editor.Editable, t string) []byte { <span class="post-detail">Updated: ` + updatedTime + `</span> <span class="right">Updated: ` + publishTime + `</span> </li>` + + return []byte(post) } func editHandler(res http.ResponseWriter, req *http.Request) { |