diff options
author | friendica <info@friendica.com> | 2012-03-04 02:26:13 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-04 02:26:13 -0800 |
commit | 638bbb2171b6d1dcd68f0d46359441afb848561d (patch) | |
tree | 7686f4f3866e79e51fe225d3eaaa8033844679e1 /view/theme/dispy/conversation.tpl | |
parent | 20d37f2e3ec7736ebf04e4c637398eee0aea78a5 (diff) | |
parent | ae158aa6f9ae151cda613812f50073c4666a4edc (diff) | |
download | volse-hubzilla-638bbb2171b6d1dcd68f0d46359441afb848561d.tar.gz volse-hubzilla-638bbb2171b6d1dcd68f0d46359441afb848561d.tar.bz2 volse-hubzilla-638bbb2171b6d1dcd68f0d46359441afb848561d.zip |
Merge branch 'pull'
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 }} |