Skip to content

Commit

Permalink
chg: [qrcodes] daterange search: sort qrcode by content
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrtia committed Oct 18, 2024
1 parent b988f46 commit ee576ca
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions var/www/templates/objects/qrcode/QrcodeDaterange.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,7 @@ <h3> {{ date_from }} to {{ date_to }} Qrcodes Name: </h3>
{% for obj_id in dict_objects %}
<tr>
<td style="word-break: break-all;">
<a target="_blank" href="{{ url_for('correlation.show_correlation') }}?type=qrcode&id={{ obj_id }}">{{ dict_objects[obj_id]['id'] }}</a>
{% if dict_objects[obj_id]['content'] %}
<div><small>{{ dict_objects[obj_id]['content'] }}</small></div>
{% endif %}
<a target="_blank" href="{{ url_for('correlation.show_correlation') }}?type=qrcode&id={{ obj_id }}">{{ dict_objects[obj_id]['content'] }}</a>
</td>
<td>{{ dict_objects[obj_id]['first_seen'] }}</td>
<td>{{ dict_objects[obj_id]['last_seen'] }}</td>
Expand Down

0 comments on commit ee576ca

Please sign in to comment.