{% extends "public/base.html" %}
{% load bootstrap %}
{% load staticfiles %}
{% load i18n %}
{% block title %}Alliance Auth{% endblock %}
{% block page_title %}FleetUp{% endblock page_title %}
{% block content %}
{% if operations_list %}
{% for subject, start in operations_list %}
{{ start.subject }}
{% trans "Start" %} |
{% trans "End" %} |
{{ start.start|date:"l d M H:i" }} {% trans "Eve Time" %} |
{{ start.end|date:"l d M H:i" }} {% trans "Eve Time" %} |
Local time
|
|
{{ start.details }}
{% trans "Location" %} |
{% trans "Doctrine" %} |
{% trans "Organizer" %} |
{% trans "URL" %} |
{{ start.location }} - {{ start.location_info }} Dotlan
|
{% if start.doctrine %}
{% for doctrine in start.doctrine %}
{{ doctrine.Name }}
{% endfor %}
{% else %}
{% trans "TBA" %}
{% endif %}
|
{{ start.organizer }}
|
{% ifequal start.url "" %}
{% trans "No link" %}
{% else %}
{% trans "External link" %}
{% endifequal %}
|
{% endfor %}
{% else %}
{% trans "There seems to be no Operations in the near future, go make ISK!" %}
{% endif %}
{% trans "Current Eve Time:" %}
{% if timers_list %}
{% trans "Timers" %}
{% for notes, type in timers_list %}
{{ type.solarsystem }}
|
{{ type.expires|date:"l d M H:i" }}
|
{% endfor %}
{% endif %}
{% if timers_list %}
{% trans "Timers" %}
{% trans "Type" %} |
{% trans "Structure" %} |
{% trans "Location" %} |
{% trans "Expires(EVE-time)" %} |
{% trans "Owner" %} |
{% trans "Note" %} |
{% for notes, type in timers_list %}
{% ifequal type.type "Final" %}
{{ type.type }}{% else %}{{ type.type }}{% endifequal %}
|
{{ type.timer_type }}
|
{{ type.solarsystem }} - Planet:{{ type.planet }} Moon:{{ type.moon }}
|
{{ type.expires|date:"l d M H:i" }}
|
{{ type.owner }}
|
{{ type.notes }}
|
{% endfor %}
{% else %}
{% trans "There seems to be no Timers in the near future, this does not mean there isn't any!" %}
{% endif %}
{% include 'bundles/moment-js.html' with locale=True %}
{% endblock content %}