Skip to content

Commit

Permalink
CONCD-929 Improve show what I can work on UI (#2523)
Browse files Browse the repository at this point in the history
* CONCD-929 Change radio button text

* CONCD-929 Align text to right edge of filter
  • Loading branch information
rasarkar committed Sep 10, 2024
1 parent 962273b commit cb08f9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions concordia/templates/fragments/_filter-buttons.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{% if user.is_authenticated and user.is_staff %}
<div class="mt-4">
<div class="mt-4 pr-3">
<input name="radioButtons" type="radio" id="show-all" {% if do_filter %}onclick="filterAssets(false, '{{ all_url }}?{{ sublevel_qs }}')"{% else %}checked{% endif %}>
<label>Show all</label>
<label>All</label>
<input name="radioButtons" type="radio" id="filter-assets" {% if do_filter %}checked{% else %}onclick="filterAssets(true, '{{ filtered_url }}?{{ sublevel_qs }}')"{% endif %}>
<label>Show only reviewable by me</label>
<label>Pages I can review</label>
</div>
{% endif %}

0 comments on commit cb08f9c

Please sign in to comment.