##// END OF EJS Templates
remove trailing white-spaces from app/views/issues/_attributes.html.erb...
remove trailing white-spaces from app/views/issues/_attributes.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7313 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6539:94fd72c004da
r7193:60d80e9d314e
Show More
_form.html.erb
15 lines | 642 B | text/plain | TextLexer
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-Baptiste Barth
Do not show inactive document categories where not necessary (#8573)....
r5951 <%= select('document', 'category_id', DocumentCategory.active.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' %>