mirror of
https://github.com/tjsga/studyguides.git
synced 2025-04-05 03:40:16 -04:00
14 lines
397 B
HTML
14 lines
397 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load static %}
|
|
|
|
{% block main %}
|
|
<main>
|
|
<h1><a href="/">All</a> / {{ tag }}</h1>
|
|
{% for guide, tags in guides %}
|
|
<p class="item">
|
|
<b><a href="{{ guide.url }}">{{ guide.name }}</a></b> {% for t in tags %}<a href='{% url "courses:tag" t.name %}'>{{ t }} </a>{% endfor %}
|
|
</p>
|
|
{% endfor %}
|
|
</main>
|
|
{% endblock %} |