Merge pull request 'Highlight current page in custom tables' (#146) from pagination-color into release

Reviewed-on: https://gitea.pangea.org/trustchain-oc1-orchestral/IdHub/pulls/146
This commit is contained in:
Elahi 2024-02-29 16:06:33 +00:00
commit 6d76ece816
2 changed files with 9 additions and 3 deletions

View File

@ -159,6 +159,10 @@ h3 {
background-color: #f3f3f3;
}
.btn-grey-selected {
background-color: #a3e3d7;
}
.btn-green-user {
background-color: #c7e3a3;
}

View File

@ -71,13 +71,15 @@
{% block pagination.range %}
{% for p in table.page|table_page_range:table.paginator %}
<li {% if p == table.page.number %}class="active"{% endif %}>
<a type="button" class="btn btn-grey{% if p == table.page.number %}-selected{% endif %}
border border-dark"
{% if p == '...' %}
<a type="button" class="btn btn-grey border border-dark" href="#">{{ p }}</a>
href="#">
{% else %}
<a type="button" class="btn btn-grey border border-dark" href="{% querystring table.prefixed_page_field=p %}">
href="{% querystring table.prefixed_page_field=p %}">
{% endif %}
{{ p }}
</a>
{% endif %}
</li>
{% endfor %}
{% endblock pagination.range %}