Skip to content

Commit

Permalink
feat: collapse the icon column in the list tables
Browse files Browse the repository at this point in the history
  • Loading branch information
azmeuk committed Oct 6, 2023
1 parent 40b868c commit e760c34
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion canaille/core/templates/partial/groups.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<tbody>
{% for group in table_form.items_slice %}
<tr>
<td>
<td class="collapsing">
<a href="{{ url_for('core.groups.group', group=group) }}">
<i class="users circular black inverted icon"></i>
</a>
Expand Down
2 changes: 1 addition & 1 deletion canaille/core/templates/partial/users.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{% for watched_user in table_form.items_slice %}
<tr>
{% if user.can_read("photo") %}
<td>
<td class="collapsing">
<a href="{{ url_for('core.account.profile_edition', edited_user=watched_user) }}">
{% if user.can_manage_users and watched_user.locked %}
<i class="lock circle big black icon" title="{% trans %}This account is locked{% endtrans %}"></i>
Expand Down
2 changes: 1 addition & 1 deletion canaille/oidc/templates/partial/client_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<tbody>
{% for client in table_form.items_slice %}
<tr>
<td>
<td class="collapsing">
<a href="{{ url_for('oidc.clients.edit', client=client) }}">
{% if client.logo_uri %}
<img class="ui avatar image" src="{{ client.logo_uri }}" alt="Client logo">
Expand Down

0 comments on commit e760c34

Please sign in to comment.