mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
17 lines
489 B
HTML
17 lines
489 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Add Recommendation{% 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="{% url hr.views.add_recommendation %}" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<input type="submit" value="Add Recommendation" />
|
|
</form>
|
|
{% endblock %}
|