mirror of
https://github.com/nikdoof/evestandings.git
synced 2025-12-24 15:29:27 +00:00
20 lines
616 B
HTML
20 lines
616 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block head %}
|
|
<title>{{ name }} Standings</title>
|
|
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/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="http://image.eveonline.com/{{ type }}/{{ id }}_64.png" title="{{ entname }} ({{ standing }})"></li>
|
|
{% endfor %}
|
|
</p>
|
|
</div>
|
|
{% endfor %}
|
|
{% endblock %}
|