mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-13 14:30:17 +02:00
fixed indentation
This commit is contained in:
parent
482176c80d
commit
d9c04a65f9
@ -31,42 +31,42 @@
|
|||||||
<th class="text-center">Form Up Location</th>
|
<th class="text-center">Form Up Location</th>
|
||||||
<th class="text-center">Start Time</th>
|
<th class="text-center">Start Time</th>
|
||||||
<th class="text-center">Local Time</th>
|
<th class="text-center">Local Time</th>
|
||||||
<th class="text-center">Duration</th>
|
<th class="text-center">Duration</th>
|
||||||
<th class="text-center">FC</th>
|
<th class="text-center">FC</th>
|
||||||
<th class="text-center">Details</th>
|
<th class="text-center">Details</th>
|
||||||
<th class="text-center">Post Time</th>
|
<th class="text-center">Post Time</th>
|
||||||
{% if perms.auth.optimer_management %}
|
{% if perms.auth.optimer_management %}
|
||||||
<th class="text-center">Creator</th>
|
<th class="text-center">Creator</th>
|
||||||
<th class="text-center">Action</th>
|
<th class="text-center">Action</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
{% for ops in optimer %}
|
{% for ops in optimer %}
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width:150px" class="text-center">{{ ops.operation_name }}</td>
|
<td style="width:150px" class="text-center">{{ ops.operation_name }}</td>
|
||||||
<td style="width:150px" class="text-center">{{ ops.doctrine }}</td>
|
<td style="width:150px" class="text-center">{{ ops.doctrine }}</td>
|
||||||
<td class="text-center">
|
<td class="text-center">
|
||||||
<a href="http://evemaps.dotlan.net/system/{{ ops.system }}">{{ ops.system }}</a>
|
<a href="http://evemaps.dotlan.net/system/{{ ops.system }}">{{ ops.system }}</a>
|
||||||
</td>
|
</td>
|
||||||
<td style="width:150px" class="text-center">{{ ops.location }}</td>
|
<td style="width:150px" class="text-center">{{ ops.location }}</td>
|
||||||
<td style="width:150px" class="text-center" nowrap>{{ ops.start | date:"Y-m-d H:i" }}</td>
|
<td style="width:150px" class="text-center" nowrap>{{ ops.start | date:"Y-m-d H:i" }}</td>
|
||||||
<td class="text-center" nowrap><div id="countdown{{ ops.id }}"></div></td>
|
<td class="text-center" nowrap><div id="countdown{{ ops.id }}"></div></td>
|
||||||
<td style="width:150px" class="text-center">{{ ops.duration }}</td>
|
<td style="width:150px" class="text-center">{{ ops.duration }}</td>
|
||||||
<td style="width:150px" class="text-center">{{ ops.fc }}</td>
|
<td style="width:150px" class="text-center">{{ ops.fc }}</td>
|
||||||
<td style="width:150px" class="text-center">{{ ops.details }}</td>
|
<td style="width:150px" class="text-center">{{ ops.details }}</td>
|
||||||
<td style="width:150px" class="text-center">{{ ops.post_time}}</td>
|
<td style="width:150px" class="text-center">{{ ops.post_time}}</td>
|
||||||
{% if perms.auth.optimer_management %}
|
{% if perms.auth.optimer_management %}
|
||||||
<td style="width:150px" class="text-center">{{ ops.eve_character }}</td>
|
<td style="width:150px" class="text-center">{{ ops.eve_character }}</td>
|
||||||
<td class="text-center">
|
<td class="text-center">
|
||||||
<a href="/remove_optimer/{{ ops.id }}">
|
<a href="/remove_optimer/{{ ops.id }}">
|
||||||
<button type="button" class="btn btn-danger"><span
|
<button type="button" class="btn btn-danger"><span
|
||||||
class="glyphicon glyphicon-remove"></span></button>
|
class="glyphicon glyphicon-remove"></span></button>
|
||||||
</a>
|
</a>
|
||||||
<a href="/edit_optimer/{{ ops.id }}">
|
<a href="/edit_optimer/{{ ops.id }}">
|
||||||
<button type="button" class="btn btn-info"><span
|
<button type="button" class="btn btn-info"><span
|
||||||
class="glyphicon glyphicon-pencil"></span></button>
|
class="glyphicon glyphicon-pencil"></span></button>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user