| | 1 | | @{ |
| 0 | 2 | | ViewData["Title"] = "Planning Reports | Mesa Reporting Services"; |
| | 3 | | } |
| | 4 | |
|
| | 5 | | <div aria-label="breadcrumb"> |
| | 6 | | <ol class="breadcrumb"> |
| | 7 | | <li class="breadcrumb-item"><a asp-area="" asp-controller="Home" asp-action="Index">Home</a></li> |
| | 8 | | <li class="breadcrumb-item active" aria-current="page">Planning Reports</li> |
| | 9 | | </ol> |
| | 10 | | </div> |
| | 11 | | <br /> |
| | 12 | |
|
| | 13 | | <div class="row"> |
| | 14 | | <div class="col-3 d-grid"> |
| | 15 | | <button class="btn btn-outline-secondary text-start" data-bs-toggle="modal" data-bs-target="#chooseDateRange"><i |
| | 16 | | </div> |
| | 17 | | </div> |
| | 18 | |
|
| | 19 | | <div class="modal fade" id="chooseDateRange" tabindex="-1" aria-labelledby="chooseDateRangeLabel" aria-hidden="true"> |
| | 20 | | <div class="modal-dialog modal-dialog-centered"> |
| | 21 | | <div class="modal-content"> |
| | 22 | | <div class="modal-header"> |
| | 23 | | <h1 class="modal-title fs-5" id="exampleModalLabel">Choose Date Range</h1> |
| | 24 | | <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> |
| | 25 | | </div> |
| | 26 | | <form method="post" action="PlanningReport/WeeklyPartChangesReport" autocomplete="off"> |
| | 27 | | <div class="modal-body" style="padding-top: 15px; padding-bottom: 10px"> |
| | 28 | | <div class="row"> |
| | 29 | | <div class="col-6">Start Date:</div> |
| | 30 | | <div class="col-6"><input type="text" name="startDate" id="StartDate" /></div> |
| | 31 | | </div> |
| | 32 | | <div class="row" style="padding-top: 10px; padding-bottom: 10px"> |
| | 33 | | <div class="col-6">End Date:</div> |
| | 34 | | <div class="col-6"><input type="text" name="endDate" id="EndDate" /></div> |
| | 35 | | </div> |
| | 36 | | <div class="row" style="padding-top: 10px; padding-bottom: 10px"> |
| | 37 | | <div class="col text-center"> |
| | 38 | | <button class="btn btn-outline-secondary" onclick="displayBusyIndicator()" data-bs-dismiss=" |
| | 39 | | </div> |
| | 40 | | </div> |
| | 41 | | </div> |
| | 42 | | </form> |
| | 43 | | </div> |
| | 44 | | </div> |
| | 45 | | </div> |
| | 46 | |
|
| | 47 | | <partial name="_LoadingPartial" /> |