20 lines
474 B
Plaintext
20 lines
474 B
Plaintext
<h1><%= t('admin.new_user_attribute') %></h1>
|
|
|
|
<fieldset id='field_set_attribute_attrs'>
|
|
<legend>
|
|
<%= t('admin.user_attribute')%>
|
|
</legend>
|
|
|
|
<%= form_for @user_attribute_model, :url => admin_user_attribute_models_path do |f| %>
|
|
<%= f.error_messages %>
|
|
|
|
<%= render :partial => "form", :locals => { :f => f, :is_new => true } %>
|
|
|
|
<p>
|
|
<%= f.submit t('create') %> <%= link_back %>
|
|
</p>
|
|
|
|
<% end -%>
|
|
|
|
</fieldset>
|