diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-13 17:09:56 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-13 17:09:56 +0000 |
commit | b90e84b9fe252df464d084f0222c65367407a4ba (patch) | |
tree | 313fc54f0eb43ebb0d61f33b878c8b5e1af27052 /app/views/messages/_form.rhtml | |
parent | 75582f80f85528865fa86d93ac57a44337742939 (diff) | |
download | redmine-b90e84b9fe252df464d084f0222c65367407a4ba.tar.gz redmine-b90e84b9fe252df464d084f0222c65367407a4ba.zip |
Per project forums added.
Permissions for forums management can be set in "Admin -> Roles & Permissions".
Forums can be created on the project settings screen ("Forums" tab).
Once a project has a forum, a "Forums" link appears in the project menu.
For now, posting messages in forums requires to be logged in. Files can be attached to messages.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@529 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/messages/_form.rhtml')
-rw-r--r-- | app/views/messages/_form.rhtml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/views/messages/_form.rhtml b/app/views/messages/_form.rhtml new file mode 100644 index 000000000..453bd8b2a --- /dev/null +++ b/app/views/messages/_form.rhtml @@ -0,0 +1,17 @@ +<%= error_messages_for 'message' %> + +<div class="box"> +<!--[form:message]--> +<p><label><%= l(:field_subject) %></label><br /> +<%= f.text_field :subject, :required => true, :size => 80 %></p> + +<p><%= f.text_area :content, :required => true, :cols => 80, :rows => 15 %></p> +<%= wikitoolbar_for 'message_content' %> +<!--[eoform:message]--> + +<span class="tabular"> +<p id="attachments_p"><label><%=l(:label_attachment)%> +<%= image_to_function "add.png", "addFileField();return false" %></label> +<%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p> +</span> +</div> |