Removed redundant function from tasks.py

Added Corp/Alliance name switching to base template.
Fixed logic error in corp application filtering for hrapplication views.
This commit is contained in:
Adarnof
2015-11-06 03:22:21 +00:00
parent 8f8bc57567
commit 2a05b42c01
3 changed files with 8 additions and 6 deletions

View File

@@ -36,7 +36,11 @@
<div class="navbar-header ">
<a class="navbar-brand ">
<div class="fa fa-cog fa-spin"></div>
{{ CORP_NAME }}
{% if IS_CORP %}
<title>{{ CORP_NAME }}</title>
{% else %}
<title>{{ ALLIANCE_NAME }}</title>
{% endif %}
</a>
</div>