Sha256: 286518aa641a5a626a59c6dbb27e8ccba0904adae9060a38e6c6819a80f4bb13

Contents?: true

Size: 795 Bytes

Versions: 10

Compression:

Stored size: 795 Bytes

Contents

<h2>Personal Information</h2>
<table>
	<tr>
		<th style="text-align: right;">
			<label for="person_firstname">First name</label>
		</th>
		<td>
			<%= f.text_field "firstname" %>
		</td>
	</tr>
	<tr>
		<th style="text-align: right;">
			<label for="person_lastname">Last name</label>
		</th>
		<td>
			<%= f.text_field "lastname" %>
		</td>
	</tr>
	<tr>
		<th style="text-align: right;">
			<label for="person_birthdate">Date of birth</label>
		</th>
		<td>
			<%= f.date_select "birthdate", :include_blank => true, :start_year => Date.today.year, :end_year => 1900, :order => [:month, :day, :year] %>
		</td>
	</tr>
	<tr>
		<th style="text-align: right;">
			<label for="person_lastname">Gender</label>
		</th>
		<td>
			<%= f.select "gender", ["", "male", "female"] %>
		</td>
	</tr>
</table>

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
ae_users_legacy-0.6.12 app/views/account/_personal_info.rhtml
ae_users_legacy-0.6.11 app/views/account/_personal_info.rhtml
ae_users_legacy-0.6.10 app/views/account/_personal_info.rhtml
ae_users_legacy-0.6.9 app/views/account/_personal_info.rhtml
ae_users_legacy-0.6.8 app/views/account/_personal_info.rhtml
ae_users_legacy-0.6.7 app/views/account/_personal_info.rhtml
ae_users_legacy-0.6.6 app/views/account/_personal_info.rhtml
ae_users_legacy-0.6.5 app/views/account/_personal_info.rhtml
ae_users_legacy-0.6.3 app/views/account/_personal_info.rhtml
ae_users-0.6.0 app/views/account/_personal_info.rhtml