Skip to content

Instantly share code, notes, and snippets.

@cacheleocode
Created July 10, 2015 18:33
Show Gist options
  • Select an option

  • Save cacheleocode/058d1730adcf1e349521 to your computer and use it in GitHub Desktop.

Select an option

Save cacheleocode/058d1730adcf1e349521 to your computer and use it in GitHub Desktop.
registration form
{% extends "base2_interior.html" %}
{% load i18n %}{% get_current_language as LANG %}
{% load media %}
{% block js %}
<script type="text/javascript">
$(function() {
$("#id_username").focus();
});
</script>
{% endblock js %}
{% block head-title %}{% trans "Create new account" %}{% endblock %}
{% block title %}{% trans "Create new account" %}{% endblock %}
{% block breadcrumbs %}{{ block.super }}
<li><a href="{% url community-index %}">{% trans "Community" %}</a>
<li><a href="{% url accounts-index %}">{% trans "Nima-kai" %}</a></li>
<li>{% trans "Create new account" %}</li>
{% endblock %}
{% block primary %}
<form action="." method="POST">{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<p><input type="submit" value="Submit"></p>
</form>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment