Customizable API auditing URLs via template filter (#652)

Closes #636
This commit is contained in:
Adarnof
2017-01-19 23:01:26 -05:00
committed by GitHub
parent f5cb6a3fb7
commit 0292ad07ad
18 changed files with 243 additions and 192 deletions

View File

@@ -2,6 +2,7 @@
{% load i18n %}
{% load humanize %}
{% load bootstrap_pagination %}
{% load eveonline_extras %}
{% block member_data %}
{% if corpstats %}
<div class="row">
@@ -71,7 +72,7 @@
<td class="text-center">{{ member.character_name }}</td>
{% if corpstats.show_apis %}
{% if member.api %}
<td class="text-center"><a href="{{ JACK_KNIFE_URL }}?usid={{ member.api.api_id }}&apik={{ member.api.api_key }}" target="_blank" class="label label-primary">{{ member.api.api_id }}</td>
<td class="text-center">{{ member.api|api_link:'label label-primary' }}</td>
{% else %}
<td></td>
{% endif %}