2006-06-28 22:11:03 +04:00
|
|
|
<%= error_messages_for 'user' %>
|
|
|
|
|
|
|
|
<!--[form:user]-->
|
2006-11-12 21:50:30 +03:00
|
|
|
<div class="box">
|
|
|
|
<h3><%=l(:label_information_plural)%></h3>
|
2006-09-02 17:33:23 +04:00
|
|
|
<p><%= f.text_field :login, :required => true, :size => 25 %></p>
|
|
|
|
<p><%= f.text_field :firstname, :required => true %></p>
|
|
|
|
<p><%= f.text_field :lastname, :required => true %></p>
|
|
|
|
<p><%= f.text_field :mail, :required => true %></p>
|
|
|
|
<p><%= f.select :language, lang_options_for_select %></p>
|
2006-07-29 13:32:58 +04:00
|
|
|
|
2006-07-31 23:52:08 +04:00
|
|
|
<% for @custom_value in @custom_values %>
|
|
|
|
<p><%= custom_field_tag_with_label @custom_value %></p>
|
2006-12-17 11:10:18 +03:00
|
|
|
<% end if @custom_values%>
|
2006-07-29 13:32:58 +04:00
|
|
|
|
2006-09-02 17:33:23 +04:00
|
|
|
<p><%= f.check_box :admin %></p>
|
|
|
|
<p><%= f.check_box :mail_notification %></p>
|
2006-07-29 13:32:58 +04:00
|
|
|
</div>
|
2006-11-12 21:50:30 +03:00
|
|
|
|
|
|
|
<div class="box">
|
|
|
|
<h3><%=l(:label_authentication)%></h3>
|
|
|
|
<% unless @auth_sources.empty? %>
|
|
|
|
<p><%= f.select :auth_source_id, [[l(:label_internal), ""]] + @auth_sources.collect { |a| [a.name, a.id] } %></p>
|
|
|
|
<% end %>
|
|
|
|
<p><label for="password"><%=l(:field_password)%><span class="required"> *</span></label>
|
|
|
|
<%= password_field_tag 'password', nil, :size => 25 %></p>
|
|
|
|
<p><label for="password_confirmation"><%=l(:field_password_confirmation)%><span class="required"> *</span></label>
|
|
|
|
<%= password_field_tag 'password_confirmation', nil, :size => 25 %></p>
|
|
|
|
</div>
|
|
|
|
<!--[eoform:user]-->
|
2007-01-06 12:08:17 +03:00
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= javascript_include_tag 'calendar/calendar' %>
|
|
|
|
<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
|
|
|
|
<%= javascript_include_tag 'calendar/calendar-setup' %>
|
|
|
|
<%= stylesheet_link_tag 'calendar' %>
|
|
|
|
<% end %>
|