Skip to content

Commit

Permalink
Added fieldsets
Browse files Browse the repository at this point in the history
  • Loading branch information
tallowen committed Apr 11, 2012
1 parent c876c41 commit 5b3aee0
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions apps/phonebook/templates/phonebook/edit_profile.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -23,17 +23,21 @@ <h1>{{ _('Edit Your Profile') }}</h1>
<div class="tab-content"> <div class="tab-content">
<div class="tab-pane active" id="1"> <div class="tab-pane active" id="1">
<legend>{{ _('Profile') }}</legend> <legend>{{ _('Profile') }}</legend>
{% include 'phonebook/includes/photo_form.html' %} <fieldset>
{{ bootstrap(form.first_name) }} {% include 'phonebook/includes/photo_form.html' %}
{{ bootstrap(form.last_name) }} {{ bootstrap(form.first_name) }}
{{ bootstrap(form.website) }} {{ bootstrap(form.last_name) }}
{{ bootstrap(form.bio) }} {{ bootstrap(form.website) }}
{{ bootstrap(form.bio) }}
</fieldset>
<legend>{{ _('Location') }}</legend> <legend>{{ _('Location') }}</legend>
{{ bootstrap(address_form.street) }} <fieldset>
{{ bootstrap(address_form.city) }} {{ bootstrap(address_form.street) }}
{{ bootstrap(address_form.province) }} {{ bootstrap(address_form.city) }}
{{ bootstrap(address_form.postal_code) }} {{ bootstrap(address_form.province) }}
{{ bootstrap(address_form.country) }} {{ bootstrap(address_form.postal_code) }}
{{ bootstrap(address_form.country) }}
</fieldset>
</div> </div>
<div class="tab-pane" id="skills"> <div class="tab-pane" id="skills">
<p class="field_description"> <p class="field_description">
Expand Down

0 comments on commit 5b3aee0

Please sign in to comment.