{% extends "public/base.html" %}
{% load bootstrap %}
{% load staticfiles %}
{% 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 }}
Start |
End |
{{ start.start|date:"l d M H:i" }} Eve Time |
{{ start.end|date:"l d M H:i" }} Eve Time |
|
|
{{ start.details }}
Location |
Doctrine |
Organizer |
URL |
{{ start.location }} - {{ start.location_info }} Dotlan
|
{% if start.doctrine %}
{% for doctrine in start.doctrine %}
{{ doctrine.Name }}
{% endfor %}
{% else %}
TBA
{% endif %}
|
{{ start.organizer }}
|
{% ifequal start.url "" %}
No link
{% else %}
External link
{% endifequal %}
|
{% endfor %}
{% else %}
There seems to be no Operations in the near future, go make ISK!
{% endif %}
{% if timers_list %}
Timers
{% for notes, type in timers_list %}
{{ type.solarsystem }}
|
{{ type.expires|date:"l d M H:i" }}
|
{% endfor %}
{% endif %}
{% if timers_list %}
Timers
Type |
Structure |
Location |
Expires(EVE-time) |
Owner |
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 %}
There seems to be no Timers in the near future, this does not mean there isn't any!
{% endif %}
{% endblock content %}