mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
We don't have the departure time set until after we create the initial FlightData object. Populate the value after it is determined. Fixes https://github.com/Khopa/dcs_liberation/issues/290
50 lines
1.7 KiB
Django/Jinja
50 lines
1.7 KiB
Django/Jinja
DCS Liberation Turn {{ game.turn }}
|
|
====================
|
|
|
|
Most briefing information, including communications and flight plan information, can be found on your kneeboard.
|
|
|
|
Current situation:
|
|
====================
|
|
{% if not frontlines %}There are currently no fights on the ground.{% endif %}{% if frontlines %}{% for frontline in frontlines %}
|
|
{{ frontline.brief }}
|
|
{% endfor %}{% endif %}
|
|
|
|
Your flights:
|
|
====================
|
|
{% for flight in flights if flight.client_units %}
|
|
--------------------------------------------------
|
|
{{ flight.flight_type.name }} {{ flight.units[0].type }} x {{ flight.size }}, {{ flight.package.target.name}}
|
|
{% for waypoint in flight.waypoints %}{{ loop.index }} -- {{waypoint.name}} : {{ waypoint.description}}
|
|
{% endfor %}
|
|
--------------------------------------------------{% endfor %}
|
|
|
|
|
|
Planned ally flights:
|
|
====================
|
|
{% for dep in allied_flights_by_departure %}
|
|
{{ dep }}
|
|
---------------------------------------------------
|
|
{% for flight in allied_flights_by_departure[dep] %}
|
|
{{ flight.flight_type.name }} {{ flight.units[0].type }} x {{flight.size}}, departing in {{ flight.departure_delay }}, {{ flight.package.target.name}}{% endfor %}
|
|
{% endfor %}
|
|
|
|
Carriers and FARPs:
|
|
===================={% for runway in dynamic_runways %}
|
|
--------------------------------------------------
|
|
{{ runway.airfield_name}}
|
|
RADIO : {{ runway.atc }}
|
|
TACAN : {{ runway.tacan }} {{ runway.tacan_callsign }}
|
|
{% if runway.icls %}ICLS Channel: {{ runway.icls }}{% endif %}
|
|
{% endfor %}
|
|
|
|
AWACS:
|
|
====================
|
|
{% for i in awacs %}{{ i.callsign }} -- Freq : {{i.freq.mhz}}
|
|
{% endfor %}
|
|
|
|
JTACS [F-10 Menu] :
|
|
====================
|
|
{% for jtac in jtacs %}Frontline {{ jtac.region }} -- Code : {{ jtac.code }}
|
|
{% endfor %}
|
|
|