frontend-dali/source/widgets/weekview/templates/main.html.tpl

36 lines
1.1 KiB
Smarty
Raw Normal View History

<div class="weekview">
<div class="weekview-controls">
<label class="weekview-control-year">
<span>{{label_control_year}}</span>
<input type="number"/>
</label>
<label class="weekview-control-week">
<span>{{label_control_week}}</span>
<input type="number"/>
</label>
<label class="weekview-control-count">
<span>{{label_control_count}}</span>
<input type="number"/>
</label>
<input type="submit" class="weekview-control-apply" value="{{label_control_apply}}"/>
2024-10-01 18:28:04 +02:00
</div>
<div class="weekview-table">
2024-10-01 18:28:04 +02:00
<table>
<thead>
<tr>
<th class="calendar-cell"></th>
<th class="calendar-cell calendar-cell-day">Mo</th>
<th class="calendar-cell calendar-cell-day">Di</th>
<th class="calendar-cell calendar-cell-day">Mi</th>
<th class="calendar-cell calendar-cell-day">Do</th>
<th class="calendar-cell calendar-cell-day">Fr</th>
<th class="calendar-cell calendar-cell-day">Sa</th>
<th class="calendar-cell calendar-cell-day">So</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>