##// END OF EJS Templates
Replaces Enumeration.get_values and Enumeration.default with named scopes....
Replaces Enumeration.get_values and Enumeration.default with named scopes. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2472 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2411:4601ed2f3aeb
r2411:4601ed2f3aeb
Show More
_form.rhtml
15 lines | 650 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'document' %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <div class="box">
Jean-Philippe Lang
Initial commit...
r2 <!--[form:document]-->
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p><label for="document_category_id"><%=l(:field_category)%></label>
Jean-Philippe Lang
Replaces Enumeration.get_values and Enumeration.default with named scopes....
r2411 <%= select('document', 'category_id', Enumeration.document_categories.collect {|c| [c.name, c.id]}) %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="document_title"><%=l(:field_title)%> <span class="required">*</span></label>
Jean-Philippe Lang
Initial commit...
r2 <%= text_field 'document', 'title', :size => 60 %></p>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="document_description"><%=l(:field_description)%></label>
Jean-Philippe Lang
width of all wiki content textareas set to 99.5%...
r326 <%= text_area 'document', 'description', :cols => 60, :rows => 15, :class => 'wiki-edit' %></p>
Jean-Philippe Lang
Initial commit...
r2 <!--[eoform:document]-->
Jean-Philippe Lang
documents views modified...
r58 </div>
Jean-Philippe Lang
Slight views refactoring...
r545 <%= wikitoolbar_for 'document_description' %>