X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/2037ab1d9057d34ccf0457e8fb5c7c34b2d89083..7c20a2661d532fe1e338f0f0dfb9fe42113ab103:/floof/templates/comments/reply.mako diff --git a/floof/templates/comments/reply.mako b/floof/templates/comments/reply.mako new file mode 100644 index 0000000..916cc91 --- /dev/null +++ b/floof/templates/comments/reply.mako @@ -0,0 +1,17 @@ +<%inherit file="/base.mako" /> +<%namespace name="comments" file="/comments/lib.mako" /> + +

Reply

+% if c.parent_comment: +${h.form(url(controller='comments', action='reply_done', id=c.parent_comment_id, owner_url=c.owner_url), method='post')} +

Replying to comment ${c.parent_comment_id}

+% else: +${h.form(url(controller='comments', action='reply_done', owner_url=c.owner_url), method='post')} +% endif +
+
Comment
+
${h.textarea('text')}
+ +
${h.submit(None, 'Post')}
+
+${h.end_form()}