9 lines
186 B
HTML
9 lines
186 B
HTML
|
{% 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 %}
|