Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2024-12-31 | MAIN --> PROD | DEV (b11e4eb) --> STAGING #4571

Merged
merged 2 commits into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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';
Loading