diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2012-02-15 03:51:44 -0800 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2012-02-15 03:51:44 -0800 |
commit | 16f00cb73b4d9acbe15e636b3ab69f81c793a6c7 (patch) | |
tree | 3295a7a41dcff773ecec457c62d8408eb31a396c /view/event.tpl | |
parent | 07ca8d6574cc8b7f582bc55551290bf5f88ba8e2 (diff) | |
parent | 73bee08ac2ce4e89ab365d23f431f5e0c465abd6 (diff) | |
download | volse-hubzilla-16f00cb73b4d9acbe15e636b3ab69f81c793a6c7.tar.gz volse-hubzilla-16f00cb73b4d9acbe15e636b3ab69f81c793a6c7.tar.bz2 volse-hubzilla-16f00cb73b4d9acbe15e636b3ab69f81c793a6c7.zip |
Merge pull request #36 from fabrixxm/master
Missing icons in 'quattro' and ajax events calendar
Diffstat (limited to 'view/event.tpl')
-rw-r--r-- | view/event.tpl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/view/event.tpl b/view/event.tpl new file mode 100644 index 000000000..ac9f889ec --- /dev/null +++ b/view/event.tpl @@ -0,0 +1,10 @@ +{{ for $events as $event }} + <div class="event"> + + {{ if $event.item.author-name }}<a href="$event.item.author-link" ><img src="$event.item.author-avatar" height="32" width="32" />$event.item.author-name</a>{{ endif }} + $event.html + {{ if $event.item.plink }}<a href="$event.plink.0" title="$event.plink.1" target="external-link" class="plink-event-link icon s22 remote-link"></a>{{ endif }} + {{ if $event.edit }}<a href="$event.edit.0" title="$event.edit.1" class="edit-event-link icon s22 pencil"></a>{{ endif }} + </div> + <div class="clear"></div> +{{ endfor }} |