diff options
author | friendica <info@friendica.com> | 2012-03-26 02:00:14 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-26 02:00:14 -0700 |
commit | 63fa5f6c7706bd150099821e9bf8826cb1cf4dcd (patch) | |
tree | 925418add983b98ee27542289b1418c7fe7a9e61 /view/theme/quattro/conversation.tpl | |
parent | 3431d0b42705524b81c9fe71279aff6464efc69f (diff) | |
parent | 579c4f3079b9d1912cab6f70a9d95ebab1ca8743 (diff) | |
download | volse-hubzilla-63fa5f6c7706bd150099821e9bf8826cb1cf4dcd.tar.gz volse-hubzilla-63fa5f6c7706bd150099821e9bf8826cb1cf4dcd.tar.bz2 volse-hubzilla-63fa5f6c7706bd150099821e9bf8826cb1cf4dcd.zip |
Merge pull request #172 from fabrixxm/master
Rearrange theme tpls
Diffstat (limited to 'view/theme/quattro/conversation.tpl')
-rwxr-xr-x | view/theme/quattro/conversation.tpl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/view/theme/quattro/conversation.tpl b/view/theme/quattro/conversation.tpl new file mode 100755 index 000000000..ff202bbe4 --- /dev/null +++ b/view/theme/quattro/conversation.tpl @@ -0,0 +1,23 @@ +{{ 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 s22 delete text">$dropping</span> +</a> +{{ endif }} |