frontend-dali/source/widgets/weekview/templates/main.html.tpl
fenris f51cf92907 [task-408] Pages durch Widgets ablösen
## Aufgaben

- [\#408](https://vikunja.ramsch.sx/tasks/408)

## Beschreibung

- mit Sync-Funktionen umgesetzt; fühlt sich alles sooo viel besser an

Reviewed-on: #2
Co-authored-by: Fenris Wolf <fenris@folksprak.org>
Co-committed-by: Fenris Wolf <fenris@folksprak.org>
2025-10-14 23:37:02 +02:00

35 lines
1.2 KiB
Smarty

<div class="weekview">
<div class="weekview-controls">
<label class="weekview-control weekview-control-year">
<span>{{label_control_year}}</span>
<input type="number"/>
</label>
<label class="weekview-control weekview-control-week">
<span>{{label_control_week}}</span>
<input type="number"/>
</label>
<label class="weekview-control weekview-control-count">
<span>{{label_control_count}}</span>
<input type="number"/>
</label>
</div>
<div class="weekview-table">
<table>
<thead>
<tr>
<th class="calendar-cell"></th>
<th class="calendar-cell calendar-cell-day">{{label_weekday_monday}}</th>
<th class="calendar-cell calendar-cell-day">{{label_weekday_tuesday}}</th>
<th class="calendar-cell calendar-cell-day">{{label_weekday_wednesday}}</th>
<th class="calendar-cell calendar-cell-day">{{label_weekday_thursday}}</th>
<th class="calendar-cell calendar-cell-day">{{label_weekday_friday}}</th>
<th class="calendar-cell calendar-cell-day">{{label_weekday_saturday}}</th>
<th class="calendar-cell calendar-cell-day">{{label_weekday_sunday}}</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>