Reworking of API key importing, allow keys to be updated

This commit is contained in:
2011-05-19 15:50:00 +01:00
parent 8fca5d1946
commit 1533d937f4
6 changed files with 81 additions and 16 deletions

View File

@@ -0,0 +1,19 @@
{% extends "base.html" %}
{% block title %}Update EVE API Key{% endblock %}
{% block content %}
<p>Please update your API key as provided on the <a
href="http://eve-online.com/api">EVE Online API
page</a> and a optional description.</p>
<form action="{% url eve_api.views.eveapi_update acc.api_user_id %}" method="post">
<table>
{{ form.as_table }}
</table>
<br />
{% csrf_token %}
<input type="submit" value="Add Key" />
</form>
{% endblock %}