4eb7d1f26a7712386d4fc449b1287ec78e7879cf
[bigly] / src / bigly / templates / bigly / link_info.html
1 {% extends 'bigly/_base.html' %}
2
3 {% block body %}
4 <table>
5   <tr>
6     <td>Status:</td>
7     {% if 200 <= status and status < 300 %}
8       <td style='color: green;'>{{ status }}</td>
9     {% elif 400 <= status and status < 600 %}
10       <td style='color: red;'>{{ status }}</td>
11     {% else %}
12       <td>{{ status }}</td>
13     {% endif %}
14   </tr>
15   <tr>
16     <td>Link:</td>
17     <td><a href='{{ link }}'>{{ link }}</a></td>
18   </tr>
19 </table>
20 {% endblock %}