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

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