Solutions for MEIM
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 313B

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