1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 17:31:14 +00:00
redmine/app/views/documents/_document.html.erb
Go MAEDA 6f6d380e74 Structured Document list for more flexible UI design with CSS (#17924).
Patch by Yonghwan SO and Mizuki ISHIKAWA.


git-svn-id: http://svn.redmine.org/redmine/trunk@21403 e93f8b46-1217-0410-a6f0-8f06a7374b81
2022-02-08 02:40:24 +00:00

8 lines
349 B
Plaintext

<div class="document-item document-<%= document.id %>">
<h4 class="title"><%= link_to document.title, document_path(document) %></h4>
<div class="updated_on"><em><%= format_time(document.updated_on) %></em></div>
<div class="wiki description">
<%= textilizable(truncate_lines(document.description), :object => document) %>
</div>
</div>