mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 12:49:01 +02:00

This should allow the templates to be found and swapped out more easily. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
21 lines
434 B
HTML
21 lines
434 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<form id="registration_form" method="post" action=".">
|
|
{{ form.as_p }}
|
|
|
|
<input type="submit" class="btn" value="{% trans 'Submit' %}" />
|
|
{% csrf_token %}
|
|
</form>
|
|
{% endblock %}
|
|
|
|
|
|
{% block scripts %}
|
|
<script>
|
|
$(document).ready(function() {
|
|
$("#registration_form input:text, #registration_form textarea").first().focus();
|
|
});
|
|
</script>
|
|
{% endblock %}
|