Skip to content

Commit

Permalink
move last commit
Browse files Browse the repository at this point in the history
moved to correct if statement, travelling is "blue"

resolves: Kivou-2000607#570
  • Loading branch information
Swiftkilla123 committed Apr 9, 2024
1 parent 45d306e commit c724b27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/faction/war/target.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
</div>
</td>
{% if target.status_color == "blue" %}
<td class='text-start player-status-{{target.status_color}}' title="{% if target.status_details %}{{target.status_details|cleanhtml}}{% endif %}" data-val="">{{target.status_description}}</td>
<td class='text-start player-status-{{target.status_color}}' title="{% if target.status_details %}{{target.status_details|cleanhtml}}{% else %}{% trans 'Destination unavailable at this time' %}{% endif %}" data-val="">{% if target.status_details %}{{target.status_details|cleanhtml}}{% else %}{{target.status_description}}{% endif %}</td>
{% else %}
<td class='text-start status player-status-{{target.status_color}}' title="{% if target.status_details %}{{target.status_details|cleanhtml}}{% else %}{% trans 'Destination unavailable at this time' %}{% endif %}" data-val="{{target.status_until}}">{% if target.status_details %}{{target.status_details|cleanhtml}}{% else %}{{target.status_description}}{% endif %}</td>
<td class='text-start status player-status-{{target.status_color}}' title="{% if target.status_details %}{{target.status_details|cleanhtml}}{% else %}{% trans 'Destination unavailable at this time' %}{% endif %}" data-val="{{target.status_until}}">{{target.status_description}}</td>
{% endif %}
<td class="text-center update-timer" title="Last update on {{target.update_timestamp|ts2date}}" data-val="{{target.update_timestamp}}"><i class="fa fa-spinner fa-pulse"></i></td>

Expand Down

0 comments on commit c724b27

Please sign in to comment.