kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
18 years ago
|
<%= error_messages_for 'message' %>
|
||
17 years ago
|
<% replying ||= false %>
|
||
18 years ago
|
|
||
|
<div class="box">
|
||
|
<!--[form:message]-->
|
||
13 years ago
|
<p><label for="message_subject"><%= l(:field_subject) %></label><br />
|
||
|
<%= f.text_field :subject, :size => 120, :id => "message_subject" %>
|
||
17 years ago
|
|
||
17 years ago
|
<% if !replying && User.current.allowed_to?(:edit_messages, @project) %>
|
||
15 years ago
|
<label><%= f.check_box :sticky %><%= l(:label_board_sticky) %></label>
|
||
|
<label><%= f.check_box :locked %><%= l(:label_board_locked) %></label>
|
||
17 years ago
|
<% end %>
|
||
|
</p>
|
||
18 years ago
|
|
||
16 years ago
|
<% if !replying && !@message.new_record? && User.current.allowed_to?(:edit_messages, @project) %>
|
||
|
<p><label><%= l(:label_board) %></label><br />
|
||
|
<%= f.select :board_id, @project.boards.collect {|b| [b.name, b.id]} %></p>
|
||
|
<% end %>
|
||
|
|
||
13 years ago
|
<p>
|
||
|
<%= label_tag "message_content", l(:description_message_content), :class => "hidden-for-sighted" %>
|
||
|
<%= f.text_area :content, :cols => 80, :rows => 15, :class => 'wiki-edit', :id => 'message_content' %></p>
|
||
18 years ago
|
<%= wikitoolbar_for 'message_content' %>
|
||
|
<!--[eoform:message]-->
|
||
|
|
||
17 years ago
|
<p><%= l(:label_attachment_plural) %><br />
|
||
|
<%= render :partial => 'attachments/form' %></p>
|
||
18 years ago
|
</div>
|