Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213141516 |
- <!--
- external code
- import from https://tutorial.djangogirls.org/en/template_extending/
- -->
- {% extends 'base.html' %}
- {% block content %}
- <div class="row">
- <div class="mx-auto">
- <h1>Artikel-Editor</h1>
- <form method="POST" class="mt-5 post-form">{% csrf_token %}
- {{ form.as_p }}
- <button type="submit" class="save btn btn-outline-dark">Sichern</button>
- </form>
- </div>
- </div>
- {% endblock %}
|