Integrated django_dynamic_preferences for setting management.

This commit is contained in:
2018-12-01 17:28:37 +02:00
parent fa5760de69
commit 541adb4f2a
7 changed files with 238 additions and 1 deletions

View File

@ -0,0 +1,12 @@
{% extends "YtManagerApp/master_default.html" %}
{% load crispy_forms_tags %}
{% block body %}
<div class="container">
<h1>Welcome</h1>
<p>This wizard will guide you through setting up the application.</p>
{% crispy form %}
</div>
{% endblock body %}

View File

@ -0,0 +1,12 @@
{% extends "YtManagerApp/master_default.html" %}
{% load crispy_forms_tags %}
{% block body %}
<div class="container">
<h1>Done!</h1>
<p>The application is now ready to use!</p>
{% crispy form %}
</div>
{% endblock body %}