25 lines
1013 B
HTML
25 lines
1013 B
HTML
<h2 class="pull-left">
|
|
<a href="{ROOT_URL}calendar/byDay/{calendarID}?day={lastDay}&month={lastDayMonth}" role="button" class="btn btn-primary">
|
|
<i class="glyphicon glyphicon-chevron-left"></i>
|
|
</a>
|
|
<span class="dateDayContainer">{activeDate}</span>
|
|
<a href="{ROOT_URL}calendar/byDay/{calendarID}?day={nextDay}&month={nextDayMonth}" role="button" class="btn btn-primary">
|
|
<i class="glyphicon glyphicon-chevron-right"></i>
|
|
</a>
|
|
</h2>
|
|
{dateDropdown}
|
|
<div class="container-fluid">
|
|
{LOOP}
|
|
<div class="hour-row{hourSelected}">
|
|
<h2 class="hour-header">{hour}:00</h2>
|
|
{EventCells}
|
|
<span class="hour-footer">
|
|
<a href="{ROOT_URL}calendar/createEvent?calendar_id={calendarID}&hour={hour}&day={day}" class="btn btn-sm btn-success" role="button"><i class="glyphicon glyphicon-plus"></i></a>
|
|
</span>
|
|
</div>
|
|
{/LOOP}
|
|
{ALT}
|
|
<div class="hour-row{hourSelected}">
|
|
</div>
|
|
{/ALT}
|
|
</div> |