Adds breadcrumbs

This commit is contained in:
Mouse Reeve 2021-04-01 09:22:43 -07:00
parent ed127f4e07
commit 5c10bdab7c
2 changed files with 18 additions and 2 deletions

View file

@ -18,7 +18,23 @@
{% block panel %}{% endblock %}
</section>
<footer class="modal-card-foot is-flex is-justify-content-flex-end">
<footer class="modal-card-foot is-flex is-justify-content-space-between">
<nav class="breadcrumb mb-0" aria-label="breadcrumbs">
<ul>
{% url 'get-started-profile' as url %}
<li {% if request.path in url %}class="is-active"{% endif %}>
<a {% if request.path in url %}aria-current="page"{% endif %} href="{{ url }}">{% trans "Create profile" %}</a>
</li>
{% url 'get-started-books' as url %}
<li {% if request.path in url %}class="is-active"{% endif %}>
<a {% if request.path in url %}aria-current="page"{% endif %} href="{{ url }}">{% trans "Add books" %}</a>
</li>
{% url 'get-started-users' as url %}
<li {% if request.path in url %}class="is-active"{% endif %}>
<a {% if request.path in url %}aria-current="page"{% endif %} href="{{ url }}">{% trans "Find friends" %}</a>
</li>
</ul>
</nav>
{% if next %}
<a href="{% url next %}" class="button">
<span>{% trans "Skip this step" %}</span>

View file

@ -111,7 +111,7 @@ urlpatterns = [
re_path(r"^directory/?", views.Directory.as_view(), name="directory"),
# Get started
re_path(
r"^get-started/?$",
r"^get-started/profile/?$",
views.GetStartedProfile.as_view(),
name="get-started-profile",
),