diff options
author | Simon <simon@kisikew.org> | 2012-03-03 16:23:07 -0800 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-03-03 16:23:07 -0800 |
commit | f3c1e2c546a7c9b5c3d04796d37dce6ac5d039d3 (patch) | |
tree | 8d8ff10c21a7490a13b7c472dc48269c7017df47 /view/theme/dispy/conversation.tpl | |
parent | 74866a96de8f1cdf3114e05530641901e89dca42 (diff) | |
parent | 09c2f81cb30a74652b81ab48ffb44cfdad097cb6 (diff) | |
download | volse-hubzilla-f3c1e2c546a7c9b5c3d04796d37dce6ac5d039d3.tar.gz volse-hubzilla-f3c1e2c546a7c9b5c3d04796d37dce6ac5d039d3.tar.bz2 volse-hubzilla-f3c1e2c546a7c9b5c3d04796d37dce6ac5d039d3.zip |
Merge pull request #73 from simonlnu/master
dispy! (and minor formatting)
Diffstat (limited to 'view/theme/dispy/conversation.tpl')
-rw-r--r-- | view/theme/dispy/conversation.tpl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/view/theme/dispy/conversation.tpl b/view/theme/dispy/conversation.tpl new file mode 100644 index 000000000..0b14f1c80 --- /dev/null +++ b/view/theme/dispy/conversation.tpl @@ -0,0 +1,21 @@ +{{ for $threads as $thread }} +<div id="tread-wrapper-$thread.id" class="tread-wrapper"> + {{ for $thread.items as $item }} + {{if $item.comment_firstcollapsed}} + <div class="hide-comments-outer"> + <span id="hide-comments-total-$thread.id" class="hide-comments-total">$thread.num_comments</span> <span id="hide-comments-$thread.id" class="hide-comments fakelink" onclick="showHideComments($thread.id);">$thread.hide_text</span> + </div> + <div id="collapsed-comments-$thread.id" class="collapsed-comments" style="display: none;"> + {{endif}} + {{if $item.comment_lastcollapsed}}</div>{{endif}} + + {{ inc $item.template }}{{ endinc }} + + + {{ endfor }} +</div> +{{ endfor }} + +{{ if $dropping }} +<a href="#" onclick="deleteCheckedItems();return false;"><span class="icon delete"></span><span class="s22 text">$dropping</span></a> +{{ endif }} |