diff --git a/base/templates/auth/user_settings.html b/base/templates/auth/user_settings.html new file mode 100644 index 0000000..9fa4218 --- /dev/null +++ b/base/templates/auth/user_settings.html @@ -0,0 +1,37 @@ +{% extends "base.html" %} +{% load form %} +{% block content %} +

+ Mon compte +

+ {% for error in form.non_field_errors %}
{{ error }}
{% endfor %} +
+ {% csrf_token %} +
+ {% if not user.youtubecredentials.credentials %} + Me connecter au compte Youtube + {% else %} + + {% endif %} +
+
+ {% for field in form %} + + {% endfor %} + +
+
+ Changer mon mot de passe +
+
+{% endblock content %} diff --git a/base/templates/base.html b/base/templates/base.html index 8c84913..4622abb 100644 --- a/base/templates/base.html +++ b/base/templates/base.html @@ -47,7 +47,9 @@