mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
parent
c803a49134
commit
422e335328
@ -19,7 +19,7 @@
|
|||||||
custom campaigns guide</a>.
|
custom campaigns guide</a>.
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
{% for aircraft in faction.aircrafts %}
|
{% for aircraft in faction.aircrafts | sort(attribute="name") %}
|
||||||
<li>{{aircraft.name}}</li>
|
<li>{{aircraft.name}}</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
<strong>Frontlines vehicles:</strong>
|
<strong>Frontlines vehicles:</strong>
|
||||||
<ul>
|
<ul>
|
||||||
{% for vehicle in faction.frontline_units %}
|
{% for vehicle in faction.frontline_units | sort(attribute="name") %}
|
||||||
<li>
|
<li>
|
||||||
{% if vehicle.name is not none %}
|
{% if vehicle.name is not none %}
|
||||||
{{ vehicle.name }}
|
{{ vehicle.name }}
|
||||||
@ -41,7 +41,7 @@
|
|||||||
|
|
||||||
<strong>Artillery units:</strong>
|
<strong>Artillery units:</strong>
|
||||||
<ul>
|
<ul>
|
||||||
{% for arty in faction.artillery_units %}
|
{% for arty in faction.artillery_units | sort(attribute="name") %}
|
||||||
<li>
|
<li>
|
||||||
{% if arty.name is not none %}
|
{% if arty.name is not none %}
|
||||||
{{ arty.name }}
|
{{ arty.name }}
|
||||||
@ -55,7 +55,7 @@
|
|||||||
|
|
||||||
<strong>Air defenses:</strong>
|
<strong>Air defenses:</strong>
|
||||||
<ul>
|
<ul>
|
||||||
{% for air_defense in faction.air_defenses %}
|
{% for air_defense in faction.air_defenses | sort() %}
|
||||||
<li>{{air_defense}}</li>
|
<li>{{air_defense}}</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<strong>Aéronefs disponibles :</strong>
|
<strong>Aéronefs disponibles :</strong>
|
||||||
<ul>
|
<ul>
|
||||||
{% for aircraft in faction.aircrafts %}
|
{% for aircraft in faction.aircrafts | sort(attribute="name") %}
|
||||||
<li>{{aircraft.name}}</li>
|
<li>{{aircraft.name}}</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
<strong>Véhicules disponibles :</strong>
|
<strong>Véhicules disponibles :</strong>
|
||||||
<ul>
|
<ul>
|
||||||
{% for vehicle in faction.frontline_units %}
|
{% for vehicle in faction.frontline_units | sort(attribute="name") %}
|
||||||
<li>
|
<li>
|
||||||
{% if vehicle.name is not none %}
|
{% if vehicle.name is not none %}
|
||||||
{{ vehicle.name }}
|
{{ vehicle.name }}
|
||||||
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
<strong>Pièces d'artillerie :</strong>
|
<strong>Pièces d'artillerie :</strong>
|
||||||
<ul>
|
<ul>
|
||||||
{% for arty in faction.artillery_units %}
|
{% for arty in faction.artillery_units | sort(attribute="name") %}
|
||||||
<li>
|
<li>
|
||||||
{% if arty.name is not none %}
|
{% if arty.name is not none %}
|
||||||
{{ arty.name }}
|
{{ arty.name }}
|
||||||
@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
<strong>Défense Sol-Air:</strong>
|
<strong>Défense Sol-Air:</strong>
|
||||||
<ul>
|
<ul>
|
||||||
{% for air_defense in faction.air_defenses %}
|
{% for air_defense in faction.air_defenses | sort() %}
|
||||||
<li>{{air_defense}}</li>
|
<li>{{air_defense}}</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user