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.

edit.html 319B

123456789101112131415161718
  1. {% extends "base.html" %}
  2. {% block title %}Edit{% endblock %}
  3. {% block content %}
  4. <h1>Neue Nachricht</h1>
  5. <form method="POST">
  6. {% csrf_token %}
  7. {{ form.as_p }}
  8. <input class="btn btn-primary"
  9. type="submit"
  10. value="Speichern">
  11. </form>
  12. {% endblock %}