Update fleetupdoctrine.html

This commit is contained in:
johanko 2016-04-07 20:51:29 +02:00
parent 6ae79ff82e
commit 49ed89c153

View File

@ -42,8 +42,7 @@
<h3 class="panel-title"><b>{{ Role.grouper }}</b></h3> <h3 class="panel-title"><b>{{ Role.grouper }}</b></h3>
</div> </div>
<div class="panel-body"> <div class="panel-body">
<table class="table table-condensed table-hover table-striped">
<table class="table table-condensed table-hover table-striped">
<tr> <tr>
<th class="col-md-1"></th> <th class="col-md-1"></th>
<th class="col-md-1">Name</th> <th class="col-md-1">Name</th>
@ -55,35 +54,32 @@
</tr> </tr>
{% for item in Role.list %} {% for item in Role.list %}
<tr> <tr>
<td> <td>
<a href="/fleetup/fittings/{{ item.FittingId }}"><img src="https://image.eveonline.com/InventoryType/{{ item.EveTypeId }}_32.png"></a> <a href="/fleetup/fittings/{{ item.FittingId }}"><img src="https://image.eveonline.com/InventoryType/{{ item.EveTypeId }}_32.png"></a>
</td> </td>
<td> <td>
{{ item.Name }} {{ item.Name }}
</td> </td>
<td> <td>
{{ item.Role }} {{ item.Role }}
</td> </td>
<td> <td>
{{ item.HullType }} {{ item.HullType }}
</td> </td>
<td> <td>
{{ item.ShipType }} {{ item.ShipType }}
</td> </td>
<td> <td>
{% load humanize %}{{ item.EstPrice|intword }} {% load humanize %}{{ item.EstPrice|intword }}
</td> </td>
<td> <td>
{% for categories in item.Categories %} {% for categories in item.Categories %}
{{ categories }}, {{ categories }},
{% endfor %} {% endfor %}
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}
</table>
</table>
</div> </div>
</div> </div>
{% endfor %} {% endfor %}
@ -91,4 +87,4 @@
{% endfor %} {% endfor %}
</div> </div>
{% endblock content %} {% endblock content %}