example-in-django-waiting-r.../waiting_room/templates/about_us.html

9 lines
186 B
HTML
Raw Normal View History

2024-11-05 16:52:47 +01:00
{% extends 'base.html' %}
{% block title %}About us{% endblock %}
{% block content %}
<h1>About us</h1>
<a href="{% url 'waiting_room:index' %}">Go to index</a>
{% endblock %}