##// END OF EJS Templates
Use Postgresql's reset_pk_sequence in Trac importer to reset issue id sequence (#595)....
Use Postgresql's reset_pk_sequence in Trac importer to reset issue id sequence (#595). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1119 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r936:92a23c05bb71
r1105:a3dda6dc4a3d
Show More
_list_simple.rhtml
24 lines | 876 B | text/html+ruby | RhtmlLexer
<% if issues.length > 0 %>
<table class="list">
<thead><tr>
<th>#</th>
<th><%=l(:field_tracker)%></th>
<th><%=l(:field_subject)%></th>
</tr></thead>
<tbody>
<% for issue in issues %>
<tr id="issue-<%= issue.id %>" class="issue hascontextmenu <%= cycle('odd', 'even') %> <%= "status-#{issue.status.position} priority-#{issue.priority.position}" %>">
<td class="id">
<%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %>
</td>
<td><%=h issue.project.name %> - <%= issue.tracker.name %><br />
<%= issue.status.name %> - <%= format_time(issue.updated_on) %></td>
<td class="subject">
<%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %>
</td>
</tr>
<% end %>
</tbody>
</table>
<% else %>
<i><%=l(:label_no_data)%></i>
<% end %>