diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-05 20:45:04 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-05 20:45:04 +0000 |
commit | 96f83cc8f0f032554f771a59da22303cd473b878 (patch) | |
tree | 355a0d2ed653a5426c59ebf6a1fe65eba024b4d0 /app/views/documents | |
parent | eabc04d8368824965d3ac8de3fa84502e9c05d38 (diff) | |
download | redmine-96f83cc8f0f032554f771a59da22303cd473b878.tar.gz redmine-96f83cc8f0f032554f771a59da22303cd473b878.zip |
trunk moved from /trunk/redmine to /trunk
git-svn-id: http://redmine.rubyforge.org/svn/trunk@67 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/documents')
-rw-r--r-- | app/views/documents/_form.rhtml | 29 | ||||
-rw-r--r-- | app/views/documents/edit.rhtml | 8 | ||||
-rw-r--r-- | app/views/documents/show.rhtml | 48 |
3 files changed, 85 insertions, 0 deletions
diff --git a/app/views/documents/_form.rhtml b/app/views/documents/_form.rhtml new file mode 100644 index 000000000..873c96329 --- /dev/null +++ b/app/views/documents/_form.rhtml @@ -0,0 +1,29 @@ +<%= error_messages_for 'document' %> +<div class="box"> +<!--[form:document]--> +<p><label for="document_category_id"><%=l(:field_category)%></label>
+<select name="document[category_id]">
+<%= options_from_collection_for_select @categories, "id", "name", @document.category_id %> +</select></p>
+
+<p><label for="document_title"><%=l(:field_title)%> <span class="required">*</span></label> +<%= text_field 'document', 'title', :size => 60 %></p> + +<p><label for="document_description"><%=l(:field_description)%></label> +<%= text_area 'document', 'description', :cols => 60, :rows => 15 %></p> +<!--[eoform:document]--> +</div> + +<% unless $RDM_TEXTILE_DISABLED %> +<%= javascript_include_tag 'jstoolbar' %> +<script type="text/javascript"> +//<![CDATA[ +if (document.getElementById) { + if (document.getElementById('document_description')) { + var commentTb = new jsToolBar(document.getElementById('document_description')); + commentTb.draw(); + } +} +//]]> +</script> +<% end %>
\ No newline at end of file diff --git a/app/views/documents/edit.rhtml b/app/views/documents/edit.rhtml new file mode 100644 index 000000000..3db4bcc6a --- /dev/null +++ b/app/views/documents/edit.rhtml @@ -0,0 +1,8 @@ +<h2><%=l(:label_document)%></h2> + +<%= start_form_tag({:action => 'edit', :id => @document}, :class => "tabular") %> + <%= render :partial => 'form' %> + <%= submit_tag l(:button_save) %> +<%= end_form_tag %> + + diff --git a/app/views/documents/show.rhtml b/app/views/documents/show.rhtml new file mode 100644 index 000000000..2f021e1b8 --- /dev/null +++ b/app/views/documents/show.rhtml @@ -0,0 +1,48 @@ +<h2><%= @document.title %></h2>
+
+<p><em><%= @document.category.name %><br />
+<%= format_date @document.created_on %></em></p>
+<%= textilizable @document.description %>
+
+
+<table width="100%">
+<tr><td><%= link_to_if_authorized l(:button_edit), :controller => 'documents', :action => 'edit', :id => @document %></td>
+<td align="right">
+<% if authorize_for('documents', 'destroy') %>
+ <%= start_form_tag({ :controller => 'documents', :action => 'destroy', :id => @document } ) %>
+ <%= submit_tag l(:button_delete) %>
+ <%= end_form_tag %>
+<% end %>
+</td></tr>
+</table>
+<br />
+
+<h3><%= l(:label_attachment_plural) %></h3>
+<ul> +<% for attachment in @attachments %> + <li>
+ <% if authorize_for('documents', 'destroy_attachment') %>
+ <div style="float:right;padding:6px;">
+ <%= start_form_tag({ :controller => 'documents', :action => 'destroy_attachment', :id => @document, :attachment_id => attachment } ) %>
+ <%= submit_tag l(:button_delete), :class => 'button-small' %>
+ <%= end_form_tag %>
+ </div>
+ <% end %>
+
+ <%= link_to attachment.filename, :action => 'download', :id => @document, :attachment_id => attachment %>
+ (<%= human_size attachment.filesize %>)<br />
+ <em><%= attachment.author.display_name %>, <%= format_date(attachment.created_on) %></em><br /> + <%= lwr(:label_download, attachment.downloads) %>
+ </li>
+<% end %> +</ul>
+<br />
+
+
+<% if authorize_for('documents', 'add_attachment') %>
+ <%= start_form_tag ({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true) %>
+ <label><%=l(:label_attachment_new)%></label>
+ <%= file_field 'attachment', 'file' %>
+ <%= submit_tag l(:button_add) %>
+ <%= end_form_tag %>
+<% end %>
|