Further template updates

This commit is contained in:
2010-03-01 02:46:57 +01:00
parent 8a119204c2
commit 0f7d9f80de
4 changed files with 24 additions and 0 deletions

View File

@@ -67,4 +67,7 @@ setup.</p>
<p> <p>
<a href="/profile/add/eveapi">Add a Eve API key</a> <a href="/profile/add/eveapi">Add a Eve API key</a>
</p> </p>
<p>If you encounter any errors during using this service, copy the massive
error message into <a href="http://pastebin.com/">Pastebin</a> and give
Matalok a good kicking on IRC/Jabber/Email or on the Forums.</p>
{% endblock %} {% endblock %}

View File

@@ -1,3 +1,6 @@
{% extends "base.html" %}
{% block content %}
{% load i18n %} {% load i18n %}
{% block HeadTag %} {% block HeadTag %}
<script type="text/javascript"> <script type="text/javascript">
@@ -30,3 +33,4 @@
</ul> </ul>
{% endblock %} {% endblock %}
{% endblock %}

View File

@@ -1,3 +1,8 @@
{% extends "base.html" %}
{% block title %}Add EVE API Key{% endblock %}
{% block content %}
<p>Please fill in your API key as provided on the <a <p>Please fill in your API key as provided on the <a
href="http://eve-online.com/api">EVE Online API href="http://eve-online.com/api">EVE Online API
page</a></p> page</a></p>
@@ -6,3 +11,4 @@ page</a></p>
{{ form.as_p }} {{ form.as_p }}
<input type="submit" value="Submit" /> <input type="submit" value="Submit" />
</form> </form>
{% endblock %}

View File

@@ -1,4 +1,15 @@
{% extends "base.html" %}
{% block title %}Add Service Account{% endblock %}
{% block content %}
<p>To add a service to your account, selec the service from the list below
then provide a username and password you wish to use to connect.<br/>
<br/>
For details on how to connect to each service, please consult the <a
href="http://wiki.dredd.it">wiki</a></p>
<form action="/profile/add/service" method="post"> <form action="/profile/add/service" method="post">
{{ form.as_p }} {{ form.as_p }}
<input type="submit" value="Submit" /> <input type="submit" value="Submit" />
</form> </form>
{% endblock %}