CC-1695 Remove Campcaster Studio and make install easier
Changing htmlUI dir structure to be better.
This commit is contained in:
parent
acda23db88
commit
c4b96da797
285 changed files with 0 additions and 0 deletions
41
htmlUI/templates/scheduler/month.tpl
Normal file
41
htmlUI/templates/scheduler/month.tpl
Normal file
|
@ -0,0 +1,41 @@
|
|||
{$SCHEDULER->buildMonth()}
|
||||
{$SCHEDULER->buildWeek()}
|
||||
|
||||
<!-- start scheduler -->
|
||||
<div class="content">
|
||||
<div class="container_elements">
|
||||
<h1>##Monthly View## : {$SCHEDULER->curr.monthname}</h1>
|
||||
<table class="scheduler_month">
|
||||
<tr>
|
||||
{foreach from=$SCHEDULER->Week item="_Weekday"}
|
||||
<th>##{$_Weekday.label.full}##</th>
|
||||
{/foreach}
|
||||
</tr>
|
||||
|
||||
{foreach from=$SCHEDULER->Month item="_Day"}
|
||||
{if $_Day.isSelected}
|
||||
{assign var="percentage" value=$SCHEDULER->getDayUsagePercentage($_Day.year, $_Day.month, $_Day.day)}
|
||||
{else}
|
||||
{assign var="percentage" value="0"}
|
||||
{/if}
|
||||
|
||||
{if $_Day.isFirst}
|
||||
<tr>
|
||||
{/if}
|
||||
|
||||
<td {if $_Day.isToday} class="today"{/if}>
|
||||
<a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=day&year={$_Day.year}&month={$_Day.month}&day={$_Day.day}')">
|
||||
<p>{$_Day.day}</p>
|
||||
<div class="scala">
|
||||
<div class="scala_in" style="width: {$percentage}px;"></div> <!-- fullsize 96px, multiple of 24 -->
|
||||
</div>
|
||||
</a>
|
||||
</td>
|
||||
|
||||
{if $_Day.isLast}
|
||||
</tr>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue