Conflicts: app/controllers/documents_controller.rb app/controllers/meetings_controller.rb app/models/ability.rb app/models/document.rb app/models/meeting.rb app/models/meetingtyp.rb app/views/documents/_document.html.erb app/views/documents/_nested_form.html.erb app/views/documents/edit.js.erb app/views/documents/new.js.erb app/views/meetings/_meeting.html.erb app/views/themen/_small.html.erb config/routes.rb
10 lines
398 B
Plaintext
10 lines
398 B
Plaintext
<div class="contentbox" id="document_<%= document.id%>">
|
|
<% image_tag("/iconnavy/time.png") %>
|
|
|
|
<%= fa_icon("file-text") %>
|
|
<%= link_to document.name, document %>
|
|
|
|
<%= link_to "edit", edit_document_path(document),:remote=>true if can? :edit, document %>
|
|
<%= link_to 'Delete', document, method: :delete, data: { confirm: 'Are you sure?' } , remote: true if can? :delete, document %>
|
|
</div>
|