aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy/conversation.tpl
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-04 02:26:13 -0800
committerfriendica <info@friendica.com>2012-03-04 02:26:13 -0800
commit638bbb2171b6d1dcd68f0d46359441afb848561d (patch)
tree7686f4f3866e79e51fe225d3eaaa8033844679e1 /view/theme/dispy/conversation.tpl
parent20d37f2e3ec7736ebf04e4c637398eee0aea78a5 (diff)
parentae158aa6f9ae151cda613812f50073c4666a4edc (diff)
downloadvolse-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.tpl21
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 }}