diff options
author | Friendika <info@friendika.com> | 2011-09-27 01:04:54 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-27 01:04:54 -0700 |
commit | 25ac93f44d92b839c5012ba8cbb7ecf221658eff (patch) | |
tree | 534884f33c8a51f3b00bb68b275ba1be3b0ddab2 /view/theme/testbubble/wall_item.tpl | |
parent | 069a76bff4d635e65ccfd27dcf81bf3531fbfc61 (diff) | |
parent | e9638b69801cee3e74a97825f9af3749c9322c53 (diff) | |
download | volse-hubzilla-25ac93f44d92b839c5012ba8cbb7ecf221658eff.tar.gz volse-hubzilla-25ac93f44d92b839c5012ba8cbb7ecf221658eff.tar.bz2 volse-hubzilla-25ac93f44d92b839c5012ba8cbb7ecf221658eff.zip |
Merge pull request #3 from fabrixxm/master
Works on UI
Diffstat (limited to 'view/theme/testbubble/wall_item.tpl')
-rw-r--r-- | view/theme/testbubble/wall_item.tpl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/view/theme/testbubble/wall_item.tpl b/view/theme/testbubble/wall_item.tpl index b8af3685f..47f062aff 100644 --- a/view/theme/testbubble/wall_item.tpl +++ b/view/theme/testbubble/wall_item.tpl @@ -27,9 +27,14 @@ <div class="wall-item-tools" id="wall-item-tools-$id"> $vote - $plink + {{ if $plink }} + <div class="wall-item-links-wrapper"><a href="$plink.href" title="$plink.title" target="external-link" class="icon remote-link"></a></div> + {{ endif }} $edpost - $star + + {{ if $star }} + <a href="#" id="starred-$id" onclick="dostar($id); return false;" class="star-item icon $isstarred" title="$star.toggle"></a> + {{ endif }} $drop </div> |