2020-03-24 17:15:43 +01:00
|
|
|
<table id="{{table_id}}" class="table table-striped table-bordered">
|
|
|
|
<thead class="bg-dark text-white">
|
|
|
|
<tr>
|
|
|
|
<th class="bg-info text-white">Description</th>
|
|
|
|
<th class="bg-info text-white">Date</th>
|
|
|
|
<th class="bg-info text-white">UUID</th>
|
|
|
|
<th class="bg-info text-white">User</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody style="font-size: 15px;">
|
2020-03-27 17:06:26 +01:00
|
|
|
{% for dict_cookiejar in all_cookiejar %}
|
2020-03-24 17:15:43 +01:00
|
|
|
<tr>
|
2020-04-01 09:58:47 +02:00
|
|
|
<td id="description-text">{{dict_cookiejar['description']}}</td>
|
2020-03-24 17:15:43 +01:00
|
|
|
<td>
|
2020-03-27 17:06:26 +01:00
|
|
|
{%if dict_cookiejar['date']%}
|
|
|
|
{{dict_cookiejar['date'][0:4]}}/{{dict_cookiejar['date'][4:6]}}/{{dict_cookiejar['date'][6:8]}}
|
2020-03-24 17:15:43 +01:00
|
|
|
{%endif%}
|
|
|
|
</td>
|
|
|
|
<td>
|
2023-02-17 14:50:20 +01:00
|
|
|
<a target="_blank" href="{{ url_for('crawler_splash.crawler_cookiejar_show') }}?uuid={{ dict_cookiejar['uuid'] }}">
|
|
|
|
{{ dict_cookiejar['uuid']}}
|
2020-03-24 17:15:43 +01:00
|
|
|
</a>
|
|
|
|
</td>
|
2023-02-17 14:50:20 +01:00
|
|
|
<td>{{dict_cookiejar['user']}}</td>
|
2020-03-24 17:15:43 +01:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|