Skip to content

Commit

Permalink
Merge branch 'main' into 4845-pray-and-pay-revisions
Browse files Browse the repository at this point in the history
  • Loading branch information
ERosendo authored Feb 27, 2025
2 parents 868ff37 + 7880607 commit 091b12c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cl/opinion_page/templates/opinions.html
Original file line number Diff line number Diff line change
Expand Up @@ -299,28 +299,28 @@ <h4 class="case-court">{{ cluster.docket.court }}</h4>
</div>
</div>

<ul class="nav nav-tabs hidden-print">
<ul class="nav nav-tabs hidden-print nav-justified">
<li role="presentation" {% if tab == "opinions" or tab == "" %} class="active" {% endif %}>
<a href="{% url 'view_case' cluster.pk cluster.slug %}">Opinion</a>
</li>
{% if authorities_count > 0 %}
<li role="presentation" {% if tab == "authorities" %} class="active" {% endif %}>
<a href="{% url "view_case_authorities" cluster.pk cluster.slug %}">Auth<span class="hidden-xs hidden-sm hidden-md">orities&nbsp;({{ authorities_count }})</span></a>
<a href="{% url "view_case_authorities" cluster.pk cluster.slug %}">Authorities&nbsp;({{ authorities_count }})</a>
</li>
{% endif %}
{% if cited_by_count > 0 %}
<li role="presentation" {% if tab == "cited-by" %} class="active" {% endif %}>
<a href="{% url "view_case_cited_by" cluster.pk cluster.slug %}">Cited<span class="hidden-xs hidden-sm hidden-md">&nbsp;By&nbsp;({{ cited_by_count }})</span></a>
<a href="{% url "view_case_cited_by" cluster.pk cluster.slug %}">Cited&nbsp;By&nbsp;({{ cited_by_count }})</a>
</li>
{% endif %}
{% if summaries_count > 0 %}
<li role="presentation" {% if tab == "summaries" %} class="active" {% endif %}>
<a href="{% url "view_case_summaries" cluster.pk cluster.slug %}">Sum<span class="hidden-xs hidden-sm hidden-md">maries&nbsp;({{ summaries_count }})</span></a>
<a href="{% url "view_case_summaries" cluster.pk cluster.slug %}">Summaries&nbsp;({{ summaries_count }})</a>
</li>
{% endif %}
{% if related_cases_count > 0 %}
<li role="presentation" {% if tab == "related-cases" %} class="active" {% endif %}>
<a href="{% url 'view_case_related_cases' cluster.pk cluster.slug %}">Related&nbsp;<span class="hidden-xs hidden-sm hidden-md">Cases</span></a>
<a href="{% url 'view_case_related_cases' cluster.pk cluster.slug %}">Related&nbsp;Cases</a>
</li>
{% endif %}
{% if has_downloads and "pdf" in pdf_path or cluster.filepath_pdf_harvard %}
Expand Down

0 comments on commit 091b12c

Please sign in to comment.