Skip to content

Commit

Permalink
Merge pull request #4571 from GSA-TTS/main
Browse files Browse the repository at this point in the history
  • Loading branch information
jadudm authored Dec 31, 2024
2 parents 158ae80 + b11e4eb commit 951f577
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion backend/audit/templates/audit/my_submissions.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h1 class="font-sans-xl">Audits in progress</h1>
The audits listed below are in progress, and you are still able to edit them before submission. Select an audit by clicking on its Status to make changes and continue the submission process.</caption>
<thead>
<tr>
<th data-sortable scope="col" role="columnheader">Status</th>
<th class="status-column" data-sortable scope="col" role="columnheader">Status</th>
<th data-sortable scope="col" role="columnheader">Entity name</th>
<th data-sortable scope="col" role="columnheader">Report ID</th>
<th data-sortable scope="col" role="columnheader">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@
name="audit_year"
type="checkbox"
value={{ value }}
{% for item in form_user_input.audit_year %}
{% if item == value or item == text %}
checked
{% endif %}
{% endfor %}
{% if value in form_user_input.audit_year or text in form_user_input.audit_year %}checked{% endif %}
/>
<label class="usa-checkbox__label" for="audit-year-{{ text }}">{{ text }}</label>
</div>
Expand Down
4 changes: 4 additions & 0 deletions backend/static/scss/_table.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.status-column {
width: 7.5rem;
text-align: left;
}
1 change: 1 addition & 0 deletions backend/static/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
@use '_form';
@use '_search';
@use '_workbook-upload';
@use '_table';

0 comments on commit 951f577

Please sign in to comment.