7 lines
178 B
HTML
7 lines
178 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>Musik</h1>
|
|
{% if user.is_authenticated %}
|
|
{% include "game/home.html" %}
|
|
{% endif %}
|
|
{% endblock content %}
|