slovocast/app/templates/dashboard.twig

22 lines
486 B
Twig
Raw Normal View History

2024-06-28 00:34:37 +00:00
{% extends 'layouts/skeleton.twig' %}
{% block content %}
<div>
<h1>Hello, {{ session.get('user').name }}!</h1>
</div>
<div>
{% if channel %}
<h2>{{ channel.name }}</h2>
<ul>
<li>Add Episode</li>
<li>Manage Episodes</li>
<li>Generate Feed</li>
</ul>
{% else %}
<ul>
2024-12-05 13:32:34 +00:00
<li><a href="{{ url_for("channel-create-page") }}">Create Channel</a></li>
</ul>
{% endif %}
2024-06-28 00:34:37 +00:00
</div>
{% endblock %}