diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-01 21:10:04 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-05-01 21:10:04 -0700 |
commit | e332d1074f1b663ec66d37b0f575df2e41d5535c (patch) | |
tree | 6309a232348eb70ed4db5fbb7ed898f98c5beee8 /view/theme/redbasic/tpl/comment_item.tpl | |
parent | 42ed73ed4ac55ac62214301097f7d72cbcb37238 (diff) | |
download | volse-hubzilla-e332d1074f1b663ec66d37b0f575df2e41d5535c.tar.gz volse-hubzilla-e332d1074f1b663ec66d37b0f575df2e41d5535c.tar.bz2 volse-hubzilla-e332d1074f1b663ec66d37b0f575df2e41d5535c.zip |
move theme specific files to theme dir
Diffstat (limited to 'view/theme/redbasic/tpl/comment_item.tpl')
-rwxr-xr-x | view/theme/redbasic/tpl/comment_item.tpl | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/view/theme/redbasic/tpl/comment_item.tpl b/view/theme/redbasic/tpl/comment_item.tpl new file mode 100755 index 000000000..f490483b8 --- /dev/null +++ b/view/theme/redbasic/tpl/comment_item.tpl @@ -0,0 +1,67 @@ + {{if $threaded}} + <div class="comment-wwedit-wrapper threaded" id="comment-edit-wrapper-{{$id}}" style="display: block;"> + {{else}} + <div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;"> + {{/if}} + <form class="comment-edit-form" style="display: block;" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;"> + <input type="hidden" name="type" value="{{$type}}" /> + <input type="hidden" name="profile_uid" value="{{$profile_uid}}" /> + <input type="hidden" name="parent" value="{{$parent}}" /> + <input type="hidden" name="return" value="{{$return_path}}" /> + <input type="hidden" name="jsreload" value="{{$jsreload}}" /> + <input type="hidden" name="preview" id="comment-preview-inp-{{$id}}" value="0" /> + <textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" onFocus="commentOpenUI(this,{{$id}});" onBlur="commentCloseUI(this,{{$id}});" ondragenter="linkdropper(event);" ondragleave="linkdropexit(event);" ondragover="linkdropper(event);" ondrop="linkdrop(event);" >{{$comment}}</textarea> + {{if $qcomment}} + <select id="qcomment-select-{{$id}}" name="qcomment-{{$id}}" class="qcomment" onchange="qCommentInsert(this,{{$id}});" > + <option value=""></option> + {{foreach $qcomment as $qc}} + <option value="{{$qc}}">{{$qc}}</option> + {{/foreach}} + </select> + {{/if}} + <div id="comment-tools-{{$id}}" class="pt-2 comment-tools"> + <div id="comment-edit-bb-{{$id}}" class="btn-toolbar pull-left"> + <div class="btn-group mr-2"> + <button class="btn btn-outline-secondary btn-sm" title="{{$edbold}}" onclick="insertbbcomment('{{$comment}}','b', {{$id}}); return false;"> + <i class="fa fa-bold comment-icon"></i> + </button> + <button class="btn btn-outline-secondary btn-sm" title="{{$editalic}}" onclick="insertbbcomment('{{$comment}}','i', {{$id}}); return false;"> + <i class="fa fa-italic comment-icon"></i> + </button> + <button class="btn btn-outline-secondary btn-sm" title="{{$eduline}}" onclick="insertbbcomment('{{$comment}}','u', {{$id}}); return false;"> + <i class="fa fa-underline comment-icon"></i> + </button> + <button class="btn btn-outline-secondary btn-sm" title="{{$edquote}}" onclick="insertbbcomment('{{$comment}}','quote', {{$id}}); return false;"> + <i class="fa fa-quote-left comment-icon"></i> + </button> + <button class="btn btn-outline-secondary btn-sm" title="{{$edcode}}" onclick="insertbbcomment('{{$comment}}','code', {{$id}}); return false;"> + <i class="fa fa-terminal comment-icon"></i> + </button> + </div> + <div class="btn-group mr-2"> + <button class="btn btn-outline-secondary btn-sm" title="{{$edurl}}" onclick="insertCommentURL('{{$comment}}',{{$id}}); return false;"> + <i class="fa fa-link comment-icon"></i> + </button> + </div> + {{if $feature_encrypt}} + <div class="btn-group mr-2"> + <button class="btn btn-outline-secondary btn-sm" title="{{$encrypt}}" onclick="red_encrypt('{{$cipher}}','#comment-edit-text-' + '{{$id}}',''); return false;"> + <i class="fa fa-key comment-icon"></i> + </button> + </div> + {{/if}} + {{$comment_buttons}} + </div> + <div class="btn-group float-right" id="comment-edit-submit-wrapper-{{$id}}"> + {{if $preview}} + <button id="comment-edit-presubmit-{{$id}}" class="btn btn-outline-secondary btn-sm" onclick="preview_comment({{$id}}); return false;" title="{{$preview}}"> + <i class="fa fa-eye comment-icon" ></i> + </button> + {{/if}} + <button id="comment-edit-submit-{{$id}}" class="btn btn-primary btn-sm" type="submit" name="button-submit" onclick="post_comment({{$id}}); return false;">{{$submit}}</button> + </div> + </div> + <div class="clear"></div> + </form> + </div> + <div id="comment-edit-preview-{{$id}}" class="comment-edit-preview"></div> |