Files
evestandings/standings/templates/standings_list.html
2013-10-14 01:05:56 +01:00

20 lines
834 B
HTML

{% extends "base.html" %}
{% block head %}
<title>{{ name }} Standings</title>
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.3.0/bootstrap.min.css">
{% endblock %}
{% block content %}
{% for type in standings %}
<div class="row" id="{{ type }}">
<p><h1 class="muted">{{ type }}</h1></p>
<p>
{% for type, id, entname, standing in standings[type] %}
<img src="{% if type == 'Corporation' %}http://image.eveonline.com/Corporation/{{ id }}_64.png{% endif %}{% if type == 'Alliance' %}http://image.eveonline.com/Alliance/{{ id }}_64.png{% endif %}{% if type == 'Character' %}http://image.eveonline.com/Character/{{ id }}_64.jpg{% endif %}" title="{{ entname }} ({{ standing }})"></li>
{% endfor %}
</p>
</div>
{% endfor %}
{% endblock %}