diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-11-26 16:40:40 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-11-26 16:40:40 +0100 |
commit | c407e72dcc4d4f892e88e8260e662104586695f2 (patch) | |
tree | 69662ba0dfa5d8e34b6e9829dfc5f6f57db94e4a | |
parent | 8e3b796a2ff28d1c46fbae9d2b029e9f7252c0dc (diff) | |
download | volse-hubzilla-c407e72dcc4d4f892e88e8260e662104586695f2.tar.gz volse-hubzilla-c407e72dcc4d4f892e88e8260e662104586695f2.tar.bz2 volse-hubzilla-c407e72dcc4d4f892e88e8260e662104586695f2.zip |
add location
-rwxr-xr-x | view/tpl/event_head.tpl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/view/tpl/event_head.tpl b/view/tpl/event_head.tpl index 05d58aba2..4362360d3 100755 --- a/view/tpl/event_head.tpl +++ b/view/tpl/event_head.tpl @@ -79,20 +79,22 @@ break; case "agendaWeek": element.find(".fc-title").html( - "<img src='{0}' style='height:10px; width:10px'> {1}: {2}<p>{3}</p>".format( + "<img src='{0}' style='height:10px; width:10px'> {1}: {2}<p>{3}</p><p>{4}</p>".format( event.item['author']['xchan_photo_s'], event.item['author']['xchan_name'], event.title, - event.item.description + event.item.description, + event.item.location )); break; case "agendaDay": element.find(".fc-title").html( - "<img src='{0}' style='height:10px;width:10px'> {1}: {2}<p>{3}</p>".format( + "<img src='{0}' style='height:10px;width:10px'> {1}: {2}<p>{3}</p><p>{4}</p>".format( event.item['author']['xchan_photo_s'], event.item['author']['xchan_name'], event.title, - event.item.description + event.item.description, + event.item.location )); break; } |