15 lines
592 B
HTML
15 lines
592 B
HTML
{% extends "base.html" %}
|
|
{% load form %}
|
|
{% block content %}
|
|
<h1>
|
|
<i class="ri-group-2-fill"></i> {{ group.name }}
|
|
</h1>
|
|
<p>
|
|
{% if not user.youtubecredentials.credentials %}
|
|
<a href="{% url "youtube_login" %}" role="button"><i class="ri-youtube-fill"></i> Me connecter au compte Youtube</a>
|
|
{% else %}
|
|
<i class="ri-youtube-fill"></i> Une playlist sera générée automatiquement sur le compte Youtube <strong>{{ user.youtubecredentials.title }}</strong>.
|
|
{% endif %}
|
|
</p>
|
|
{% form form %}
|
|
{% endblock content %}
|