46 lines
1.8 KiB
Plaintext
46 lines
1.8 KiB
Plaintext
<%
|
|
# encoding: utf-8
|
|
#
|
|
# Redmine plugin for Document Management System "Features"
|
|
#
|
|
# Copyright (C) 2011-16 Karel Pičman <karel.picman@kontron.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
%>
|
|
|
|
<table class="display list dmsf_list" id="browser">
|
|
<thead>
|
|
<tr>
|
|
<th class="dmsf_checkbox dmsf_th">
|
|
<input id="check_all_entries" title="<%= l(:title_check_uncheck_all_for_zip_download_or_email) %>" type="checkbox" />
|
|
</th>
|
|
<th class ="dmsf_th"><%= l(:link_title) %></th>
|
|
<th class ="dmsf_th"><%= l(:link_size) %></th>
|
|
<th class ="dmsf_th"><%= l(:link_modified) %></th>
|
|
<th title="<%= l(:label_dmsf_version) %>" class="dmsf_th"><%= l(:link_ver) %></th>
|
|
<th class ="dmsf_th"><%= l(:link_workflow) %></th>
|
|
<th class ="dmsf_th"><%= l(:link_author) %></th>
|
|
<th class ="dmsf_th"><%# controls %></th>
|
|
<th class="dmsf_invisible"><%# position %></th>
|
|
<th class="dmsf_invisible"><%# size %></th>
|
|
<th class="dmsf_invisible"><%# updated %></th>
|
|
<th class="dmsf_invisible"><%# revision %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<%= render(:partial => 'dmsf/dmsf_rows') %>
|
|
</tbody>
|
|
</table>
|