diff options
Diffstat (limited to 'templates/issues/details.html')
-rw-r--r-- | templates/issues/details.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/issues/details.html b/templates/issues/details.html new file mode 100644 index 0000000..479eeeb --- /dev/null +++ b/templates/issues/details.html @@ -0,0 +1,15 @@ +{% extends "issues/index.html" %} +{% load bootstrap3 %} +{% load i18n %} + +{% block main %} + <h2>2. {% trans "The Issue" %}</h2> + <p>Please describe the issue you're having with the product.</p> + <form method="post" action="{% url 'issues-details' %}" enctype="multipart/form-data"> + {% csrf_token %} + {% bootstrap_form form %} + <div class="form-group text-center"> + <button type="submit" class="btn btn-primary">{% trans "Continue" %}</button> + </div> + </form> +{% endblock main %} |