mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-12 10:06:21 +01:00
typos fixed
This commit is contained in:
67
stock/templates/registered/signaturemanagement.html
Normal file
67
stock/templates/registered/signaturemanagement.html
Normal file
@@ -0,0 +1,67 @@
|
||||
{% extends "public/base.html" %}
|
||||
{% load staticfiles %}
|
||||
|
||||
{% block title %}Alliance Auth{% endblock %}
|
||||
|
||||
{% block page_title %}Signature Management{% endblock page_title %}
|
||||
{% block extra_css %}{% endblock extra_css %}
|
||||
|
||||
{% block content %}
|
||||
<div class="col-lg-12">
|
||||
<h1 class="page-header text-center">Signatures
|
||||
<div class="text-right">
|
||||
<a href="{% url 'auth_add_signature_view' %}">
|
||||
{% if perms.auth.signature_management %}
|
||||
<button type="button" class="btn btn-success">Create Signature</button>
|
||||
{% endif %}
|
||||
</a>
|
||||
</div>
|
||||
</h1>
|
||||
<table class="table table-responsive table-bordered">
|
||||
<tr>
|
||||
<th class="text-center">ID</th>
|
||||
<th class="text-center">System</th>
|
||||
<th class="text-center">Destination</th>
|
||||
<th class="text-center">Signature Type</th>
|
||||
<th class="text-center">Status</th>
|
||||
<th class="text-center">Notes</th>
|
||||
{% if perms.auth.signature_management %}
|
||||
<th class="text-center">Action</th>
|
||||
{% endif %}
|
||||
</tr>
|
||||
|
||||
{% for sigt in sigtracker %}
|
||||
<tr>
|
||||
<td style="width:150px" class="text-center">{{ sigt.ident }}</td>
|
||||
|
||||
<td class="text-center">
|
||||
<a href="http://evemaps.dotlan.net/system/{{ sigt.system }}">{{ sigt.system }}</a>
|
||||
</td>
|
||||
<td style="width:150px" class="text-center">{{ sigt.destination }}</td>
|
||||
<td style="width:150px" class="text-center">{{ sigt.sigtype }}</td>
|
||||
<td style="width:150px" class="text-center">{{ sigt.status }}</td>
|
||||
<td style="width:150px" class="text-center">{{ sigt.notes }}</td>
|
||||
|
||||
|
||||
|
||||
{% if perms.auth.signature_management %}
|
||||
<td class="text-center">
|
||||
<a href="/remove_signiture/{{ sigt.id }}">
|
||||
<button type="button" class="btn btn-danger"><span
|
||||
class="glyphicon glyphicon-remove"></span></button>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
{% endblock content %}
|
||||
Reference in New Issue
Block a user