mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-19 15:01:14 +00:00
Removes issues/list_simple partial, no longer used.
git-svn-id: http://svn.redmine.org/redmine/trunk@16401 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
8c7898bb5d
commit
a0db91e2ab
@ -1,29 +0,0 @@
|
||||
<% if issues && issues.any? %>
|
||||
<%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do %>
|
||||
<table class="list list-simple issues">
|
||||
<thead><tr>
|
||||
<th class="id">#</th>
|
||||
<th class="project"><%=l(:field_project)%></th>
|
||||
<th class="status"><%=l(:field_status)%></th>
|
||||
<th class="subject"><%=l(:field_subject)%></th>
|
||||
</tr></thead>
|
||||
<tbody>
|
||||
<% for issue in issues %>
|
||||
<tr id="issue-<%= h(issue.id) %>" class="hascontextmenu <%= issue.css_classes %>">
|
||||
<td class="id">
|
||||
<%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;', :id => nil) %>
|
||||
<%= link_to("#{issue.tracker} ##{issue.id}", issue_path(issue)) %>
|
||||
</td>
|
||||
<td class="project"><%= link_to_project(issue.project) %></td>
|
||||
<td class="status"><%= issue.status %></td>
|
||||
<td class="subject">
|
||||
<span><%= link_to(issue.subject, issue_path(issue)) %></span>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
<% end %>
|
||||
<% else %>
|
||||
<p class="nodata"><%= l(:label_no_data) %></p>
|
||||
<% end %>
|
||||
@ -361,11 +361,6 @@ table.boards td.last-message {text-align:left;font-size:80%;}
|
||||
|
||||
div.table-list.boards .table-list-cell.name {width: 30%;}
|
||||
|
||||
#content table.list-simple {table-layout:fixed;}
|
||||
#content table.list-simple td {white-space:nowrap; overflow:hidden; text-overflow: ellipsis; text-align:left;}
|
||||
#content table.list-simple th.id, #content table.list-simple th.project {width:18%;}
|
||||
#content table.list-simple th.status {width:14%;}
|
||||
|
||||
table.messages td.last_message {text-align:left;}
|
||||
|
||||
#query_form_content {font-size:90%;}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user