mumui/templates/home.html
2023-09-16 10:48:47 +02:00

10 lines
201 B
HTML

{% extends 'base.html' %}
{% block title %}home{% endblock %}
{% block content %}
Hi {{ user.username }}!
<ul>
<li><a href="{% url 'deployment' %}">deployments</a></li>
</ul>
{% endblock %}