Remove path display from index

This commit is contained in:
George Lacey 2021-06-10 06:28:55 +01:00
parent 2d0aa58c77
commit 0afdab0111

View File

@ -67,19 +67,6 @@
</div> </div>
</div> </div>
{% endif %} {% endif %}
<div style="width: 600px;" class="repo-container shadow rounded bg-primary overflow-hidden">
<h2 class="h2">Paths</h2>
{% if location_list %}
{% for location in location_list %}
<dl class="att-label row ps-3">
<dt class="col-3">{{ location.label }}</dt>
<dd class="col-9">{{ location.short_description }}</dd>
</dl>
{% endfor %}
{% else %}
<h3 class="h3">None found</h3>
{% endif %}
</div>
</div> </div>
{% endblock %} {% endblock %}