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

1234567891011121314
  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. {% if user.is_authenticated %}
  10. <p><a href="{% url 'logout' %}?next=/posts/home"
  11. class="btn btn-warning">Abmelden</a></p>
  12. {% endif %}
  13. {% endblock %}