2020-03-24 16:15:43 +00: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 16:06:26 +00:00
|
|
|
{% for dict_cookiejar in all_cookiejar %}
|
2020-03-24 16:15:43 +00:00
|
|
|
<tr>
|
2020-04-01 07:58:47 +00:00
|
|
|
<td id="description-text">{{dict_cookiejar['description']}}</td>
|
2020-03-24 16:15:43 +00:00
|
|
|
<td>
|
2020-03-27 16:06:26 +00:00
|
|
|
{%if dict_cookiejar['date']%}
|
|
|
|
{{dict_cookiejar['date'][0:4]}}/{{dict_cookiejar['date'][4:6]}}/{{dict_cookiejar['date'][6:8]}}
|
2020-03-24 16:15:43 +00:00
|
|
|
{%endif%}
|
|
|
|
</td>
|
|
|
|
<td>
|
2020-03-30 16:43:50 +00:00
|
|
|
<a target="_blank" href="{{ url_for('crawler_splash.crawler_cookiejar_show') }}?cookiejar_uuid={{ dict_cookiejar['cookiejar_uuid'] }}">
|
2020-03-27 16:06:26 +00:00
|
|
|
{{ dict_cookiejar['cookiejar_uuid']}}
|
2020-03-24 16:15:43 +00:00
|
|
|
</a>
|
|
|
|
</td>
|
2020-03-27 16:06:26 +00:00
|
|
|
<td>{{dict_cookiejar['user_id']}}</td>
|
2020-03-24 16:15:43 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|