diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2011-11-15 10:43:57 -0800 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2011-11-15 10:43:57 -0800 |
commit | 5a890b0ef910f58db906cf502e76d3b7eb4aca38 (patch) | |
tree | 4d02791c20e67afb0610362b146510175b054d2d /view/wallwall_item.tpl | |
parent | d23452db2ba6bf11e2b9445bd8191aec8c22253a (diff) | |
parent | 281f9edce72f928e17d2a1075f28803ea3e265f2 (diff) | |
download | volse-hubzilla-5a890b0ef910f58db906cf502e76d3b7eb4aca38.tar.gz volse-hubzilla-5a890b0ef910f58db906cf502e76d3b7eb4aca38.tar.bz2 volse-hubzilla-5a890b0ef910f58db906cf502e76d3b7eb4aca38.zip |
Merge pull request #5 from fabrixxm/master
themes and strings works
Diffstat (limited to 'view/wallwall_item.tpl')
-rw-r--r-- | view/wallwall_item.tpl | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/view/wallwall_item.tpl b/view/wallwall_item.tpl index 2429bc20f..e47014985 100644 --- a/view/wallwall_item.tpl +++ b/view/wallwall_item.tpl @@ -34,6 +34,15 @@ </div> <div class="wall-item-bottom"> <div class="wall-item-links"> + </div> + <div class="wall-item-tags"> + {{ for $tags as $tag }} + <span class='tag'>$tag</span> + {{ endfor }} + </div> + </div> + <div class="wall-item-bottom"> + <div class="wall-item-links"> {{ if $plink }}<a class="icon s16 link" title="$plink.title" href="$plink.href">$plink.title</a>{{ endif }} </div> <div class="wall-item-actions"> @@ -62,7 +71,7 @@ <div class="wall-item-actions-tools"> {{ if $drop.dropping }} - <input type="checkbox" title="$drop.select" name="itemselected[]" value="$id" /> + <input type="checkbox" title="$drop.select" name="itemselected[]" class="item-select" value="$id" /> <a href="item/drop/$id" onclick="return confirmDelete();" class="icon delete s16" title="$drop.delete">$drop.delete</a> {{ endif }} {{ if $edpost }} @@ -72,6 +81,11 @@ </div> </div> + <div class="wall-item-bottom"> + <div class="wall-item-links"></div> + <div class="wall-item-like" id="wall-item-like-$id">$like</div> + <div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div> + </div> </div> <div class="wall-item-comment-wrapper" > $comment |