summaryrefslogtreecommitdiff
path: root/tbc_error_page/templates/deliberate.html
blob: 89a89746f964270712cb046bfa481eb1daf5de86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 %}