add location
This commit is contained in:
parent
8e3b796a2f
commit
c407e72dcc
@ -79,20 +79,22 @@
|
|||||||
break;
|
break;
|
||||||
case "agendaWeek":
|
case "agendaWeek":
|
||||||
element.find(".fc-title").html(
|
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_photo_s'],
|
||||||
event.item['author']['xchan_name'],
|
event.item['author']['xchan_name'],
|
||||||
event.title,
|
event.title,
|
||||||
event.item.description
|
event.item.description,
|
||||||
|
event.item.location
|
||||||
));
|
));
|
||||||
break;
|
break;
|
||||||
case "agendaDay":
|
case "agendaDay":
|
||||||
element.find(".fc-title").html(
|
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_photo_s'],
|
||||||
event.item['author']['xchan_name'],
|
event.item['author']['xchan_name'],
|
||||||
event.title,
|
event.title,
|
||||||
event.item.description
|
event.item.description,
|
||||||
|
event.item.location
|
||||||
));
|
));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user