diff options
Diffstat (limited to 'templates/issues/thanks.html')
-rw-r--r-- | templates/issues/thanks.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/issues/thanks.html b/templates/issues/thanks.html index e69de29..0803d57 100644 --- a/templates/issues/thanks.html +++ b/templates/issues/thanks.html @@ -0,0 +1,18 @@ +{% extends "issues/index.html" %} +{% load i18n %} + +{% block nav %} + <li><a href="#">{% trans "Product" %}</a></li> + <li><a href="#">{% trans "Issue" %}</a></li> + <li><a href="#">{% trans "Your info" %}</a></li> + <li class="active"><a href="#">{% trans "Done" %}</a></li> +{% endblock nav %} + +{% block main %} +<div style="text-align:center"> + <h1>{% trans "Thanks!" %}</h1> + <img src="{{ STATIC_URL }}img/products/done.png" alt=""/><br/> + <p>Put description here...</p> + <a class="btn btn-primary" href="{% url 'issues-welcome' %}"><i class="glyphicon glyphicon-repeat"></i> {% trans "Restart" %}</a> +</div> +{% endblock main %} |