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 352B

12345678910111213
  1. {% extends 'base.html' %}
  2. {% block content %}
  3. <div class="row">
  4. <div class="mx-auto">
  5. <h1>Artikel-Editor</h1>
  6. <form method="POST" class="mt-5 post-form">{% csrf_token %}
  7. {{ form.as_p }}
  8. <button type="submit" class="save btn btn-outline-dark">Sichern</button>
  9. </form>
  10. </div>
  11. </div>
  12. {% endblock %}