Files
django-learning-hv3/django_project/templates/base.html
2023-01-01 19:51:38 +01:00

10 lines
191 B
HTML

<header>
<a href="{% url 'home' %}">Home</a> |
<a href="{% url 'about' %}">About</a> |
<a href="{% url 'tenants' %}">Tenants</a>
</header>
{% block content %} {% endblock content %}