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.

post_edit.html 444B

12345678910111213141516
  1. <!--
  2. external code
  3. import from https://tutorial.djangogirls.org/en/template_extending/
  4. -->
  5. {% extends 'base.html' %}
  6. {% block content %}
  7. <div class="row">
  8. <div class="mx-auto">
  9. <h1>Artikel-Editor</h1>
  10. <form method="POST" class="mt-5 post-form">{% csrf_token %}
  11. {{ form.as_p }}
  12. <button type="submit" class="save btn btn-outline-dark">Sichern</button>
  13. </form>
  14. </div>
  15. </div>
  16. {% endblock %}