aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy/conversation.tpl
diff options
context:
space:
mode:
authorSimon L'nu <simon.lnu@gmail.com>2012-03-03 19:19:35 -0500
committerSimon L'nu <simon.lnu@gmail.com>2012-03-03 19:19:35 -0500
commit64400e8d59cab64cfa57b969df88a4cafe76f168 (patch)
tree5815b02950bb3a4f7dda3a126c1bbfaf1338bf38 /view/theme/dispy/conversation.tpl
parent1bed4010aa5dc711be674b41fac97d1448f4e5cd (diff)
downloadvolse-hubzilla-64400e8d59cab64cfa57b969df88a4cafe76f168.tar.gz
volse-hubzilla-64400e8d59cab64cfa57b969df88a4cafe76f168.tar.bz2
volse-hubzilla-64400e8d59cab64cfa57b969df88a4cafe76f168.zip
first commit for dispy New Edition
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
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 }}