Commit 9d41657 1 parent 5e10bfc commit 9d41657 Copy full SHA for 9d41657
File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,13 @@ <h5>
175
175
</ svg >
176
176
{{ meta['extracted_matches'][match]['subtype'] }}
177
177
</ td >
178
- < td > {{ meta['extracted_matches'][match]['id'] }}</ td >
178
+ < td >
179
+ {% if meta['extracted_matches'][match]['subtype'] == 'tracker' %}
180
+ < a href ="{{ url_for('hunters.show_tracker') }}?uuid={{ meta['extracted_matches'][match]['id'] }} "> {{ meta['extracted_matches'][match]['id'] }}</ a >
181
+ {% else %}
182
+ {{ meta['extracted_matches'][match]['id'] }}
183
+ {% endif %}
184
+ </ td >
179
185
< td >
180
186
{% for row in meta['extracted_matches'][match]['matches'] %}
181
187
< a href ="#{{ row[0] }}:{{row[1] }} "> {{ row[2] }}</ a > < br >
Original file line number Diff line number Diff line change @@ -491,7 +491,13 @@ <h5>
491
491
</ svg >
492
492
{{ extracted_matches[match]['subtype'] }}
493
493
</ td >
494
- < td > {{ extracted_matches[match]['id'] }}</ td >
494
+ < td >
495
+ {% if extracted_matches[match]['subtype'] == 'tracker' %}
496
+ < a href ="{{ url_for('hunters.show_tracker') }}?uuid={{ extracted_matches[match]['id'] }} "> {{ extracted_matches[match]['id'] }}</ a >
497
+ {% else %}
498
+ {{ extracted_matches[match]['id'] }}
499
+ {% endif %}
500
+ </ td >
495
501
< td >
496
502
{% for row in extracted_matches[match]['matches'] %}
497
503
< a href ="#{{ row[0] }}:{{row[1] }} "> {{ row[2] }}</ a > < br >
You can’t perform that action at this time.
0 commit comments