A simple ticketing application written in Python/Django
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.

attachment_add.html 625B

12345678910111213141516171819202122
  1. {% extends "main/base.html" %}
  2. {% block title %}Tickets - Add attachment{% endblock %}
  3. {% block header_icon %}<i class="fa fa-pencil-square-o fa-5x"></i>{% endblock %}
  4. {% block headline %}Add Attachment{% endblock %}
  5. {% block head-message %}Please fill out the form{% endblock %}
  6. {% block content %}
  7. {% load crispy_forms_tags %}
  8. <div class="page-header"><h1>Add Attachment</h1></div>
  9. <form enctype="multipart/form-data" method="post" action="">
  10. {% csrf_token %}
  11. {{ form | crispy }}
  12. <input class="btn btn-primary" type="submit" value="Save Attachment" />
  13. </form>
  14. {% endblock %}