mirror of https://github.com/snachodog/mybuddy.git
Update back/forward arrow icon classes
This commit is contained in:
parent
8fd9680284
commit
e1f20db2cb
|
@ -7,7 +7,7 @@
|
||||||
{% if page_obj.has_previous %}
|
{% if page_obj.has_previous %}
|
||||||
<li class="page-item">
|
<li class="page-item">
|
||||||
<a class="page-link" href="{% relative_url 'page' page_obj.previous_page_number %}" aria-label="Previous">
|
<a class="page-link" href="{% relative_url 'page' page_obj.previous_page_number %}" aria-label="Previous">
|
||||||
<i class="icon-chevron-left" aria-hidden="true"></i>
|
<i class="icon-angle-circled-left" aria-hidden="true"></i>
|
||||||
<span class="sr-only">{% trans "Previous" %}</span>
|
<span class="sr-only">{% trans "Previous" %}</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
{% if page_obj.has_next %}
|
{% if page_obj.has_next %}
|
||||||
<li class="page-item">
|
<li class="page-item">
|
||||||
<a class="page-link" href="{% relative_url 'page' page_obj.next_page_number %}" aria-label="Next">
|
<a class="page-link" href="{% relative_url 'page' page_obj.next_page_number %}" aria-label="Next">
|
||||||
<i class="icon-chevron-right" aria-hidden="true"></i>
|
<i class="icon-angle-circled-right" aria-hidden="true"></i>
|
||||||
<span class="sr-only">{% trans "Next" %}</span>
|
<span class="sr-only">{% trans "Next" %}</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -3,14 +3,14 @@
|
||||||
<h3 class="text-center">
|
<h3 class="text-center">
|
||||||
{% if date_previous %}
|
{% if date_previous %}
|
||||||
<a class="btn btn-sm btn-default" href="?date={{ date_previous|date:"Y-m-d" }}" aria-label="{% trans "Previous" %}">
|
<a class="btn btn-sm btn-default" href="?date={{ date_previous|date:"Y-m-d" }}" aria-label="{% trans "Previous" %}">
|
||||||
<i class="icon-chevron-left" aria-hidden="true"></i>
|
<i class="icon-2x icon-angle-circled-left" aria-hidden="true"></i>
|
||||||
<span class="sr-only">{% trans "Previous" %}</span>
|
<span class="sr-only">{% trans "Previous" %}</span>
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ date|date }}
|
{{ date|date }}
|
||||||
{% if date_next %}
|
{% if date_next %}
|
||||||
<a class="btn btn-sm btn-default" href="?date={{ date_next|date:"Y-m-d" }}" aria-label="{% trans "Next" %}">
|
<a class="btn btn-sm btn-default" href="?date={{ date_next|date:"Y-m-d" }}" aria-label="{% trans "Next" %}">
|
||||||
<i class="icon-chevron-right" aria-hidden="true"></i>
|
<i class="icon-2x icon-angle-circled-right" aria-hidden="true"></i>
|
||||||
<span class="sr-only">{% trans "Next" %}</span>
|
<span class="sr-only">{% trans "Next" %}</span>
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -56,14 +56,14 @@
|
||||||
<h3 class="text-center">
|
<h3 class="text-center">
|
||||||
{% if date_previous %}
|
{% if date_previous %}
|
||||||
<a class="btn btn-sm btn-default" href="?date={{ date_previous|date:"Y-m-d" }}" aria-label="{% trans "Previous" %}">
|
<a class="btn btn-sm btn-default" href="?date={{ date_previous|date:"Y-m-d" }}" aria-label="{% trans "Previous" %}">
|
||||||
<i class="icon-chevron-left" aria-hidden="true"></i>
|
<i class="icon-2x icon-angle-circled-left" aria-hidden="true"></i>
|
||||||
<span class="sr-only">{% trans "Previous" %}</span>
|
<span class="sr-only">{% trans "Previous" %}</span>
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ date|date }}
|
{{ date|date }}
|
||||||
{% if date_next %}
|
{% if date_next %}
|
||||||
<a class="btn btn-sm btn-default" href="?date={{ date_next|date:"Y-m-d" }}" aria-label="{% trans "Next" %}">
|
<a class="btn btn-sm btn-default" href="?date={{ date_next|date:"Y-m-d" }}" aria-label="{% trans "Next" %}">
|
||||||
<i class="icon-chevron-right" aria-hidden="true"></i>
|
<i class="icon-2x icon-angle-circled-right" aria-hidden="true"></i>
|
||||||
<span class="sr-only">{% trans "Next" %}</span>
|
<span class="sr-only">{% trans "Next" %}</span>
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in New Issue