Skip to content

Commit

Permalink
added download button in
Browse files Browse the repository at this point in the history
  • Loading branch information
paullocknimble committed Dec 19, 2023
1 parent c3abc8d commit 03522b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
</div>

<div if="@Model.ProjectCount > 0">
<a class="govuk-button govuk-button--secondary" asp-page-handler="Download"> Download as a spreadsheet</a>
<div class="sort-component">
<nav class="govuk-body sort-component__nav" aria-label="sort-by">
<span class="govuk-!-font-weight-bold">Sorted by:</span> Project created date
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@
<ul class="moj-filter-tags">
@{
foreach (var officer in Model.SelectedOfficers)
{
{
<li><a class="moj-filter__tag" href="/path/to/remove/this"><span class="govuk-visually-hidden">Remove this filter</span> @officer.Stub()</a></li>
}
}

</ul>
}
@if (Model.SelectedOfficers.Length > 0)
@if (Model.SelectedRegions.Length > 0)
{
<h3 class="govuk-heading-s govuk-!-margin-bottom-0">Region</h3>

Expand Down

0 comments on commit 03522b1

Please sign in to comment.