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

123456789101112131415161718
  1. {% extends 'posts/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. }
  14. </div>
  15. {% endblock %}