Skip to content

Commit

Permalink
Fix parameter list so key and role and displayed in the correct order (
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljcollinsuk authored Nov 13, 2024
1 parent af041f6 commit 34ef143
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controlpanel/frontend/jinja2/includes/parameter-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<tbody class="govuk-table__body">
{%- for parameter in parameters %}
<tr class="govuk-table__row">
<td class="govuk-table__cell">{{ parameter.role_name }}</td>
<td class="govuk-table__cell">{{ parameter.key }}</td>
<td class="govuk-table__cell">{{ parameter.role_name }}</td>
<td class="govuk-table__cell">{{ parameter.name }}</td>
<td class="govuk-table__cell">
<form method="POST" action="{{ url("delete-parameter", kwargs={ "pk": parameter.id }) }}">
Expand Down

0 comments on commit 34ef143

Please sign in to comment.