allianceauth/stock/templates/registered/fleetupfittingsview.html
2016-04-06 13:11:15 +00:00

78 lines
2.8 KiB
HTML

{% extends "public/base.html" %}
{% load bootstrap %}
{% load staticfiles %}
{% block title %}Alliance Auth{% endblock %}
{% block page_title %}FleetUp{% endblock page_title %}
{% block content %}
<div class="col-lg-12">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Fleet-Up</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="/fleetup/">Ops and Timers</a></li>
<li><a href="/fleetup/doctrines/">Doctrines</a></li>
<li class="active"><a href="/fleetup/fittings/">Fittings <span class="sr-only">(current)</span></a></li>
{% if perms.auth.corp_stats %}
<li><a href="/fleetup/characters/">Characters</a></li>
{% endif %}
<li></li>
</ul>
</div>
</div>
</nav>
<div class="panel">
{% if fitting_list %}
<table class="table table-condensed table-hover table-striped">
<tr>
<th class="col-md-1"></th>
<th class="col-md-1">Name</th>
<th class="col-md-1">Hull</th>
<th class="col-md-1">Ship type</th>
<th class="col-md-1">Estimated ISK</th>
<th class="col-md-2">Categories</th>
</tr>
{% for id, fittings in fitting_list %}
<tr>
<td>
<a href="/fleetup/fittings/{{ fittings.fitting_id }}"><img src="https://image.eveonline.com/InventoryType/{{ fittings.icon_id }}_32.png"></a>
</td>
<td>
{{ fittings.name }}
</td>
<td>
{{ fittings.hull }}
</td>
<td>
{{ fittings.shiptype }}
</td>
<td>
{% load humanize %}{{ fittings.estimated|intword }}
</td>
<td>
{% for categories in fittings.categories %}
{{ categories }},
{% endfor %}
</td>
</tr>
{% endfor %}
</table>
{% else %}
<h3>There seems to be no Doctrines in here at the moment!</h3>
{% endif %}
</div>
</div>
{% endblock content %}