aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-11-26 16:40:40 +0100
committerMario Vavti <mario@mariovavti.com>2015-11-26 16:40:40 +0100
commitc407e72dcc4d4f892e88e8260e662104586695f2 (patch)
tree69662ba0dfa5d8e34b6e9829dfc5f6f57db94e4a /view
parent8e3b796a2ff28d1c46fbae9d2b029e9f7252c0dc (diff)
downloadvolse-hubzilla-c407e72dcc4d4f892e88e8260e662104586695f2.tar.gz
volse-hubzilla-c407e72dcc4d4f892e88e8260e662104586695f2.tar.bz2
volse-hubzilla-c407e72dcc4d4f892e88e8260e662104586695f2.zip
add location
Diffstat (limited to 'view')
-rwxr-xr-xview/tpl/event_head.tpl10
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'>&nbsp;{1}: {2}<p>{3}</p>".format(
+ "<img src='{0}' style='height:10px; width:10px'>&nbsp;{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'>&nbsp;{1}: {2}<p>{3}</p>".format(
+ "<img src='{0}' style='height:10px;width:10px'>&nbsp;{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;
}