diff options
Diffstat (limited to 'view/comment_item.tpl')
-rw-r--r-- | view/comment_item.tpl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/view/comment_item.tpl b/view/comment_item.tpl new file mode 100644 index 000000000..ed788ad08 --- /dev/null +++ b/view/comment_item.tpl @@ -0,0 +1,16 @@ + +<div class="comment-edit" id="comment-edit-$id" onclick="openClose('comment-edit-wrapper-$id');" >Comments</div> +<div class="comment-edit-wrapper" id="comment-edit-wrapper-$id" style="display: none;"> + <form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" > + <input type="hidden" name="type" value="jot" /> + <input type="hidden" name="profile_uid" value="$profile_uid" /> + <input type="hidden" name="parent" value="$id" /> + <textarea rows="3" cols="40" id="comment-edit-text-$id" name="body" ></textarea> + + + <div id="comment-edit-submit-wrapper" > + <input type="submit" id="comment-edit-submit" name="submit" value="Submit" /> + </div> + <div id="comment-edit-end"></div> + </form> +</div> |