2024-06-01 02:50:15 +04:00
|
|
|
|
@{
|
|
|
|
|
ViewData["Title"] = "Report";
|
|
|
|
|
}
|
|
|
|
|
<div class="text-center">
|
|
|
|
|
<h2 class="display-4">Отчёты</h2>
|
|
|
|
|
</div>
|
|
|
|
|
<form method="post">
|
|
|
|
|
<div class="align-content-center row mb-3">
|
|
|
|
|
<div class="col-sm-auto">
|
|
|
|
|
<label for="startDate">С:</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-3">
|
|
|
|
|
<input name="startDate" id="startDate" class="form-control" type="date" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-sm-auto">
|
|
|
|
|
<label for="endDate">По:</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-3">
|
|
|
|
|
<input name="endDate" id="endDate" class="form-control" type="date" />
|
|
|
|
|
</div>
|
2024-06-01 05:27:52 +04:00
|
|
|
|
<div>
|
|
|
|
|
<th>
|
2024-06-02 09:03:59 +04:00
|
|
|
|
<a class="btn btn-primary btn-sm" asp-action="ReportMake">Сформировать</a>
|
2024-06-01 05:27:52 +04:00
|
|
|
|
</th>
|
|
|
|
|
<th>
|
2024-06-02 09:03:59 +04:00
|
|
|
|
|
2024-06-01 05:27:52 +04:00
|
|
|
|
</th>
|
|
|
|
|
<th>
|
2024-06-02 09:03:59 +04:00
|
|
|
|
|
2024-06-01 05:27:52 +04:00
|
|
|
|
</th>
|
2024-06-01 02:50:15 +04:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|