Initial import

This commit is contained in:
2011-11-02 13:52:41 +00:00
commit 233c2946de
8 changed files with 302 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
{% block head %}<title>{% block title %}{% endblock %}</title>{% endblock %}
</head>
<body>
<div class="container">
<div class="content">
{% block content %}<p>It seems something has gone wrong, please contact a admin</p>{% endblock %}
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,19 @@
{% 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 == 'corp' %}http://image.eveonline.com/Corporation/{{ id }}_64.png{% endif %}{% if type == 'alli' %}http://image.eveonline.com/Alliance/{{ id }}_64.png{% endif %}{% if type == 'char' %}http://image.eveonline.com/Character/{{ id }}_64.jpg{% endif %}" title="{{ entname }} ({{ standing }})"></li>
{% endfor %}
</p>
</div>
{% endfor %}
{% endblock %}