diff options
Diffstat (limited to 'templates/issues/customer.html')
-rw-r--r-- | templates/issues/customer.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/templates/issues/customer.html b/templates/issues/customer.html index a47ba32..ae5eff6 100644 --- a/templates/issues/customer.html +++ b/templates/issues/customer.html @@ -2,9 +2,17 @@ {% load bootstrap3 %} {% load i18n %} +{% block nav %} + <li><a href="#">{% trans "Product" %}</a></li> + <li><a href="#">{% trans "Issue" %}</a></li> + <li class="active"><a href="#">{% trans "Your info" %}</a></li> + <li><a href="#">{% trans "Done" %}</a></li> +{% endblock nav %} + {% block main %} + <h2>3. {% trans "Your info" %}</h2> <form method="post" action=""> - {% csrf_token %} + {% csrf_token %} {% bootstrap_form form %} {% buttons %} <button type="submit" class="btn btn-primary">{% trans "Submit" %}</button> |