Add something that shows the redirect sequence
[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>Content Type:</td>
17     <td>{{ content_type }}</td>
18   </tr>
19   <tr>
20     <td>Link:</td>
21     <td><a href='{{ link }}'>{{ link }}</a></td>
22   </tr>
23   <tr>
24     <td>Redirects:</td>
25     <td>
26       <ol>
27         {% for r in redirect_sequence %}
28         <li>
29           {% comment "Add something that communicates when utm parameters were removed." %}
30           {% endcomment %}
31           <a href='{{ r }}'>
32             {{ r }}
33           </a>
34         </li>
35         {% endfor %}
36       </ol>
37     </td>
38   </tr>
39 </table>
40 {% endblock %}