Skip to content

Commit

Permalink
Added order field
Browse files Browse the repository at this point in the history
  • Loading branch information
wm3ndez committed Sep 14, 2014
1 parent d592e2e commit 3461bfb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion realestate/templates/dashboard/create-listing-step3.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,18 @@ <h3 class="box-title">{% trans "Listing Features" %}</h3>
{{ form.id }}
<div class="inline">
<div class="row {{ wizard.form.prefix }}">
<div class="col-xs-5 {% if form.attribute.errors %}has-error{% endif %}">
<div class="col-xs-4 {% if form.attribute.errors %}has-error{% endif %}">
{{ form.attribute.errors }}
{{ form.attribute.label_tag }} {% render_field form.attribute class+="form-control" %}
</div>
<div class="col-xs-4 {% if form.value.errors %}has-error{% endif %}">
{{ form.value.errors }}
{{ form.value.label_tag }} {% render_field form.value class+="form-control" %}
</div>
<div class="col-xs-4 {% if form.order.errors %}has-error{% endif %}">
{{ form.value.errors }}
{{ form.order.label_tag }} {% render_field form.order class+="form-control" %}
</div>

{% if wizard.form.can_delete %}
<div class="col-xs-1">
Expand Down

0 comments on commit 3461bfb

Please sign in to comment.