diff options
Diffstat (limited to 'tbc_error_page/templates/deliberate.html')
-rw-r--r-- | tbc_error_page/templates/deliberate.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tbc_error_page/templates/deliberate.html b/tbc_error_page/templates/deliberate.html new file mode 100644 index 0000000..89a8974 --- /dev/null +++ b/tbc_error_page/templates/deliberate.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} +{% block title %} Success {% endblock %} +{% block content %} +<p> You have added following urls as deliberate </p> +<table border = 1> +<th>Urls</th> + +{% for deliberate_links in deliberate %} + +<tr><td> {{ deliberate_links }} </tr></td> + + +{% endfor %} +</table> +<p></p> +<p><a href = "{% url 'tbc_error_page.views.error' %}"> <<< Go back to Error Page </a></p> +{% endblock %} |