##// END OF EJS Templates
Fixed mailer (error when no assignee)...
Fixed mailer (error when no assignee) git-svn-id: http://redmine.rubyforge.org/svn/trunk@592 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r545:70374d084e19
r589:7363428703e4
Show More
_form.rhtml
17 lines | 686 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>
<select name="document[category_id]">
Jean-Philippe Lang
0.3 unstable...
r10 <%= options_from_collection_for_select @categories, "id", "name", @document.category_id %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </select></p>
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' %>