Add page titles

main
Luca 2 years ago
parent a4011319c1
commit 378e9b164e

@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>MusicRate</title>
<title>{% block title %}MusicRate{% endblock %}</title>
<link rel="icon" href="{% static 'kontakt.svg' %}" sizes="any" type="image/svg+xml">
<link rel="stylesheet" href="{% static 'style.css' %}">
</head>

@ -1,5 +1,7 @@
{% extends "core/base.html" %}
{% block title %}Playlist erstellen{% endblock %}
{% block body %}
<h1>Playlist erstellen</h1>

@ -1,5 +1,7 @@
{% extends "core/base.html" %}
{% block title %}Playlist{% endblock %}
{% block body %}
<p>Diese Playlist enthält <b>{{ num_artists }} Künstler*innen</b>.</p>

@ -2,6 +2,8 @@
{% load qrcode %}
{% block title %}Anhörabend{% endblock %}
{% block body_class %}center{% endblock %}
{% block body %}
{% qrcode session_url %}

@ -3,6 +3,8 @@
{% load qrcode %}
{% load youtube %}
{% block title %}{{ artist.name }}{% endblock %}
{% block body_class %}center{% endblock %}
{% block body %}
<h1>{{ artist.name }}</h1>

@ -1,4 +1,6 @@
{% extends "core/base.html" %}
{% block title %}{% endblock %}
{% block body %}
{% endblock %}

@ -1,8 +1,10 @@
{% extends "core/base.html" %}
{% block title %}Am Anhörabend teilnehmen{% endblock %}
{% block body %}
<form action="" method="post">
{% csrf_token %}
<button type="submit">Anhörabend beitreten</button>
<button type="submit">Am Anhörabend teilnehmen</button>
</form>
{% endblock %}

@ -1,4 +0,0 @@
{% extends "core/base.html" %}
{% block body %}
{% endblock %}
Loading…
Cancel
Save