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

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