Removed unecessary for loop. Changed registration complete text. Profile model changes.

This commit is contained in:
Adam Bergen
2014-11-04 16:33:23 +00:00
parent a097a8c08c
commit dbe3961b56
7 changed files with 36 additions and 13 deletions

View File

@@ -5,6 +5,6 @@
{% block content %}
<div class="alert alert-success">
<h2>Thanks for registering</h2>
<p>Thanks for registering with RIGS, you application will now be moderated by an administrator and further instructions will be emailed to you</p>
<p>Thanks for registering with RIGS, further details will be emailed to you.</p>
</div>
{% endblock %}

View File

@@ -19,14 +19,6 @@
</div>
</div>
{% endfor %}
{% for field in supplement_form %}
<div class="form-group">
<label for="{{ field.id_for_label }}" class="control-label col-sm-2">{{ field.label }}</label>
<div class="controls col-sm-10">
{% render_field field class+="form-control" placeholder=field.label %}
</div>
</div>
{% endfor %}
<p><input type="submit" value="Register" class="btn btn-primary pull-right"></p>
</form>
{% endblock %}