👕 Linter

This commit is contained in:
Lacey Williams Henschel
2022-11-30 12:50:00 -08:00
parent b90807bed7
commit caa9748445

View File

@@ -5,7 +5,7 @@
{% block content %}
<!-- Breadcrumb used on filtered views -->
<div class="p-3 md:p-0">
<a class="text-orange" href="{% url "libraries" %}">Libraries</a> > <a class="text-orange" href="{% url "libraries" %}">Specific</a> > Boost.JSON
<a class="text-orange" href="{% url 'libraries' %}">Libraries</a> > <a class="text-orange" href="{% url 'libraries' %}">Specific</a> > Boost.JSON
</div>
<!-- end breadcrumb -->
@@ -37,7 +37,7 @@
<div>
<h3 class="text-2xl">Categories</h3>
{% for c in object.categories.all %}
<a href="{% url "libraries-by-category" category=c.slug %}" class="text-orange">{{ c.name }}</a>{% if not forloop.last %}, {% endif %}
<a href="{% url 'libraries-by-category' category=c.slug %}" class="text-orange">{{ c.name }}</a>{% if not forloop.last %}, {% endif %}
{% endfor %}
</div>