fix snapshot_uuid == None
This commit is contained in:
parent
74f9b88ece
commit
eb66baf842
|
@ -37,16 +37,18 @@
|
||||||
{% for snap in snapshots_log %}
|
{% for snap in snapshots_log %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
{% if snap.sid %}
|
{% if snap.sid and snap.snapshot_uuid %}
|
||||||
<a href="{{ url_for('inventory.snapshot_detail', snapshot_uuid=snap.snapshot_uuid) }}">
|
<a href="{{ url_for('inventory.snapshot_detail', snapshot_uuid=snap.snapshot_uuid) }}">
|
||||||
{{ snap.sid }}
|
{{ snap.sid }}
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
{% if snap.snapshot_uuid %}
|
||||||
<a href="{{ url_for('inventory.snapshot_detail', snapshot_uuid=snap.snapshot_uuid) }}">
|
<a href="{{ url_for('inventory.snapshot_detail', snapshot_uuid=snap.snapshot_uuid) }}">
|
||||||
{{ snap.snapshot_uuid }}
|
{{ snap.snapshot_uuid }}
|
||||||
</a>
|
</a>
|
||||||
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ snap.version }}
|
{{ snap.version }}
|
||||||
|
|
Reference in New Issue