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

1234567891011121314151617181920
  1. {% extends 'base.html' %}
  2. {% block title %}
  3. edit
  4. {% endblock %}
  5. {% block content %}
  6. <h1>Neue Nachricht</h1>
  7. <form method="POST">
  8. {% csrf_token %}
  9. {{ form.as_p }}
  10. <button type="submit" class="save btn btn-default">Speichern</button>
  11. </form>
  12. {% endblock %}