summaryrefslogtreecommitdiff
path: root/src/main/resources/templates
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-04-13 17:01:35 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-04-13 17:01:35 +0200
commit06e6c81c77f8098693473e49c11557820541dd15 (patch)
tree90093ef738927496a5c3f48540ed62871b565bbb /src/main/resources/templates
parent7f4daccab9dc21cfd95be219e5c8c86545d47125 (diff)
Lazy Chat: Implement editing of messages.
Change-Id: I291201da1fbc7c2b6563f0837f7ce3e2f7f8555c
Diffstat (limited to 'src/main/resources/templates')
-rw-r--r--src/main/resources/templates/benki/posts/postList.html13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/main/resources/templates/benki/posts/postList.html b/src/main/resources/templates/benki/posts/postList.html
index a29d886..8dd5210 100644
--- a/src/main/resources/templates/benki/posts/postList.html
+++ b/src/main/resources/templates/benki/posts/postList.html
@@ -1,4 +1,4 @@
-{@java.util.List<eu.mulk.mulkcms2.benki.bookmarks.Bookmark> posts}
+{@java.util.List<eu.mulk.mulkcms2.benki.posts.Post> posts}
{@java.lang.String pageTitle}
{@java.lang.Boolean showBookmarkForm}
{@java.lang.Boolean hasPreviousPage}
@@ -69,15 +69,24 @@
{#else}
<article class="lazychat-message">
<header>
- <div class="lazychat-message-info">
+ <div class="lazychat-message-info" style="display: inline-block">
<time datetime="{date.htmlDateTime}">{date.humanDateTime}</time>
<span class="lazychat-message-owner">{owner.firstName} {owner.lastName}</span>
</div>
+
+ {#if showLazychatForm}
+ <elix-expandable-section class="lazychat-editor-pane editor-pane">
+ <mlk-lazychat-submission-form edited-id="{post.id}"></mlk-lazychat-submission-form>
+ </elix-expandable-section>
+ {/if}
</header>
<section class="lazychat-message-content">
{contentHtml.raw}
</section>
+
+ <section class="lazychat-editor">
+ </section>
</article>
{/if}
{/with}