Update records.html add more details to results

This commit is contained in:
ghostersk
2024-05-18 19:02:23 +01:00
committed by GitHub
parent 8e5de00c6f
commit 355cf10c00
+3 -3
View File
@@ -25,7 +25,7 @@
<th>Timestamp</th> <th>Timestamp</th>
<th>Method</th> <th>Method</th>
<th>URL</th> <th>URL</th>
<th>Root Domain</th> <th>Details</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@@ -35,7 +35,7 @@
<td>{{log.timestamp.strftime('%d-%m-%Y %H:%M:%S')}}</td> <td>{{log.timestamp.strftime('%d-%m-%Y %H:%M:%S')}}</td>
<td>{{log.method}}</td> <td>{{log.method}}</td>
<td>{{log.url}}</td> <td>{{log.url}}</td>
<td>{{log.root_domain}}</td> <td><a href="{{ url_for('webblocker' ,id=log.id) }}">Show more</a></td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>
@@ -67,4 +67,4 @@
} }
</script> </script>
</body> </body>
</html> </html>