Initial commit of the HR management code

This commit is contained in:
2010-04-05 02:43:27 +01:00
parent 6b8a4e374d
commit 52a41f4229
14 changed files with 364 additions and 11 deletions

View File

@@ -0,0 +1,16 @@
{% extends "base.html" %}
{% block title %}Add EVE API Key{% endblock %}
{% block content %}
<p>Select a character you wish to recommend from, then select your friend's current application.
The person you are recommending needs to have created their application before you can add a recommendation.</p>
<form action="/hr/add/recommendation/" method="post">
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Add Recommendation" />
</form>
{% endblock %}