Add page titles

main
Luca 2 years ago
parent a4011319c1
commit 378e9b164e

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

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

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

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

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

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

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

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