Add something that shows the redirect sequence
[bigly] / src / bigly / templates / bigly / link_info.html
index 4eb7d1f..7bce71d 100644 (file)
       <td>{{ status }}</td>
     {% endif %}
   </tr>
+  <tr>
+    <td>Content Type:</td>
+    <td>{{ content_type }}</td>
+  </tr>
   <tr>
     <td>Link:</td>
     <td><a href='{{ link }}'>{{ link }}</a></td>
   </tr>
+  <tr>
+    <td>Redirects:</td>
+    <td>
+      <ol>
+        {% for r in redirect_sequence %}
+        <li>
+          {% comment "Add something that communicates when utm parameters were removed." %}
+          {% endcomment %}
+          <a href='{{ r }}'>
+            {{ r }}
+          </a>
+        </li>
+        {% endfor %}
+      </ol>
+    </td>
+  </tr>
 </table>
 {% endblock %}