##// END OF EJS Templates
Do not mass create API keys for existing users....
Do not mass create API keys for existing users. They will be created on the fly if needed, just like for new users. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3221 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2832:e76d4c5c4c3f
r3107:edab0f0cbb85
Show More
_form.rhtml
19 lines | 628 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'enumeration' %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <div class="box">
Jean-Philippe Lang
Initial commit...
r2 <!--[form:optvalue]-->
Eric Davis
Changed Enumerations to use a Single Table Inheritance...
r2677 <%= hidden_field 'enumeration', 'type' %>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="enumeration_name"><%=l(:field_name)%></label>
Jean-Philippe Lang
Initial commit...
r2 <%= text_field 'enumeration', 'name' %></p>
Jean-Philippe Lang
Added default value for enumerations....
r792
Eric Davis
Added an active field track if an Enumeration is active on the frontend view....
r2832 <p><label for="enumeration_active"><%=l(:field_active)%></label>
<%= check_box 'enumeration', 'active' %></p>
Jean-Philippe Lang
Added default value for enumerations....
r792 <p><label for="enumeration_is_default"><%=l(:field_is_default)%></label>
<%= check_box 'enumeration', 'is_default' %></p>
Jean-Philippe Lang
Initial commit...
r2 <!--[eoform:optvalue]-->
Eric Davis
Enumerations can now have custom fields defined on them. #4077...
r2831
<% @enumeration.custom_field_values.each do |value| %>
<p><%= custom_field_tag_with_label :enumeration, value %></p>
<% end %>
Eric Davis
Added an active field track if an Enumeration is active on the frontend view....
r2832 </div>