Changed op timers to Structure Timer and Bug Fixes for Fleet Operations Timer

This commit is contained in:
orbitroom 2016-01-20 22:24:07 -05:00
parent 6fb70b3160
commit 5ececa6bfd
4 changed files with 384 additions and 384 deletions

View File

@ -149,7 +149,7 @@
<li>
<a {% ifequal request.path "/optimer" %} class="active" {% endifequal %}
href="{% url 'auth_optimer_view' %}"><i
class="fa fa-compass fa-fw grayiconecolor"></i> Fleet Operations</a>
class="fa fa-exclamation fa-fw grayiconecolor"></i> Fleet Operations</a>
</li>
@ -157,7 +157,7 @@
<li>
<a {% ifequal request.path "/timer_management" %} class="active" {% endifequal %}
href="{% url 'auth_timer_view' %}"><i
class="fa fa-clock-o fa-fw grayiconecolor"></i> OP Timers</a>
class="fa fa-clock-o fa-fw grayiconecolor"></i> Structure Timers</a>
</li>
{% endif %}

View File

@ -2,7 +2,7 @@
{% load bootstrap %}
{% load staticfiles %}
{% block title %}Alliance Auth - Timer Create{% endblock %}
{% block title %}Alliance Auth - Structure Timer Create{% endblock %}
{% block page_title %}Timer Create{% endblock page_title %}
{% block extra_css %}
@ -10,7 +10,7 @@
{% block content %}
<div class="col-lg-12">
<h1 class="page-header text-center">Create Timer</h1>
<h1 class="page-header text-center">Create Structure Timer</h1>
<div class="container-fluid">
<div class="col-md-4 col-md-offset-4">

View File

@ -49,7 +49,7 @@
{% if perms.auth.optimer_management %}
<td style="width:150px" class="text-center">{{ ops.eve_character }}</td>
<td class="text-center">
<a href="/remove_optimer/{{ sigt.id }}">
<a href="/remove_optimer/{{ ops.id }}">
<button type="button" class="btn btn-danger"><span
class="glyphicon glyphicon-remove"></span></button>
</a>

View File

@ -3,16 +3,16 @@
{% block title %}Alliance Auth{% endblock %}
{% block page_title %}Timer Management{% endblock page_title %}
{% block page_title %}Structure Timer Management{% endblock page_title %}
{% block extra_css %}{% endblock extra_css %}
{% block content %}
<div class="col-lg-12">
<h1 class="page-header text-center">Operation Timers
<h1 class="page-header text-center">Structure Timers
<div class="text-right">
<a href="{% url 'auth_add_timer_view' %}">
{% if perms.auth.timer_management %}
<button type="button" class="btn btn-success">Create Timer</button>
<button type="button" class="btn btn-success">Create Structure Timer</button>
{% endif %}
</a>
</div>