2023-05-18 23:20:02 +04:00
|
|
|
|
@{
|
|
|
|
|
ViewData["Title"] = "ListDinnersToPdf";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="text-center">
|
|
|
|
|
<h2
|
|
|
|
|
class="u-text u-text-custom-color-1 u-text-default u-text-1"
|
|
|
|
|
>
|
|
|
|
|
Создание отчета по участникам за период
|
|
|
|
|
</h2>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<form method="post">
|
|
|
|
|
<div class="u-form-group u-form-name u-label-top">
|
|
|
|
|
<label class="u-label u-text-custom-color-1 u-label-1">Дата начала периода:</label>
|
|
|
|
|
<input
|
2023-05-19 01:52:16 +04:00
|
|
|
|
type="datetime-local"
|
|
|
|
|
placeholder="Выберите дату начала периода"
|
|
|
|
|
id="dateFrom" name="dateFrom"
|
|
|
|
|
class="u-input u-input-rectangle"/>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="u-form-email u-form-group u-label-top">
|
|
|
|
|
<label class="u-label u-text-custom-color-1 u-label-2">Дата конца периода:</label>
|
|
|
|
|
<input
|
|
|
|
|
type="datetime-local"
|
|
|
|
|
placeholder="Выберите дату конца периода"
|
|
|
|
|
id="dateTo" name="dateTo"
|
2023-05-18 23:20:02 +04:00
|
|
|
|
class="u-input u-input-rectangle"/>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="u-align-right u-form-group u-form-submit u-label-top">
|
|
|
|
|
<div class="col-8"></div>
|
|
|
|
|
<div class="col-4"><input type="submit" value="Сформировать отчёт" class="u-active-custom-color-6 u-border-none u-btn u-btn-submit u-button-style u-custom-color-1 u-hover-custom-color-2 u-btn-1" /></div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|