Skip to content

Commit

Permalink
feat(templates): Adds columns for Docket Number and Date Filed to doc…
Browse files Browse the repository at this point in the history
…ket alerts table
  • Loading branch information
elisa-av committed Sep 12, 2024
1 parent 9546a30 commit 3a7baf3
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions cl/users/templates/profile/alerts.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ <h3 class="gray caps">🎉 Being a member provides you unlimited docket alerts</
<tr>
<th><a class="no-underline black-link" href="?{% url_replace request 'name' %}">Case Name{% sort_caret request 'name' %}</a></th>
<th><a class="no-underline black-link" href="?{% url_replace request 'court' %}">Court{% sort_caret request 'court' %}</a></th>
<th><a class="no-underline black-link" href="?{% url_replace request 'docket_number' %}">Docket Number{% sort_caret request 'docket_number' %}</a></th>
<th><a class="no-underline black-link" href="?{% url_replace request 'date_filed' %}">Date Filed{% sort_caret request 'date_filed' %}</a></th>
<th colspan="2"><a class="no-underline black-link" href="?{% url_replace request 'hit' %}"> Last&nbsp;Hit{% sort_caret request 'hit' %}</a></th>
</tr>
</thead>
Expand All @@ -80,9 +82,6 @@ <h3 class="gray caps">🎉 Being a member provides you unlimited docket alerts</
<p class="bottom">
<a href="{{ alert.docket.get_absolute_url }}">
{{ alert.docket|best_case_name|safe|v_wrapper }}
{% if docket.docket_number %}
({{ docket.docket_number }})
{% endif %}
</a>
</p>
</td>
Expand All @@ -91,6 +90,16 @@ <h3 class="gray caps">🎉 Being a member provides you unlimited docket alerts</
{{ alert.docket.court.short_name }}
</p>
</td>
<td>
<p class="bottom">
{{ alert.docket.docket_number }}
</p>
</td>
<td>
<p class="bottom">
{{ alert.docket.date_filed }}
</p>
</td>
<td>{{ alert.date_last_hit|default:"Never" }}</td>
<td class="right">
<a href="{% url "toggle_docket_alert" %}"
Expand Down

0 comments on commit 3a7baf3

Please sign in to comment.