Changesets can be listed by changeset number.
The Git repository is here.
Changeset 163
Added a "last updated" column to the list of tickets. It isn't
possible to sort using this column because the information on the
nature of the updates is held in a different database table entirely,
but at least you can see when things were updated from the list view.
Coupled with the RSS feed this is hopefully a useful addition.
Addresses Ticket #103.
- Comitted by: rool
- Date: Friday December 22 15:11:43 2006 (over 17 years ago)
Affected files:
rool/rails/collaboa/trunk/app/views/tickets/index.rhtml:
prev. | current | |
<%= sort_header_tag('milestone_id', :caption => 'Milestone', :title => 'Sort by milestone', :class => 'ticket-milestone') %> | ||
<%= sort_header_tag('release_id', :caption => 'Release', :title => 'Sort by release', :class => 'ticket-release') %> | ||
<%= sort_header_tag('created_at', :caption => 'Created', :title => 'Sort by creation date', :class => 'ticket-created') %> | ||
17 | <th>Updated</th> | |
</thead> | ||
<% @tickets.cycle do |ticket, css| %> | ||
<tr class="<%= css -%>"> | ||
... | ... | |
<td class="ticket-part"><%= ticket.part_name unless ticket.part_name.nil? -%></td> | ||
<td class="ticket-milestone"><%= ticket.milestone_name unless ticket.milestone_name.nil? -%></td> | ||
<td class="ticket-milestone"><%= ticket.release_name unless ticket.release_name.nil? -%></td> | ||
28 | | |
29 | <td class="ticket-created"><%= ticket.created_at.strftime("%Y-%m-%d %H:%M") -%></td> | |
30 | <td><%= ticket.ticket_changes.empty? ? ticket.created_at.strftime("%Y-%m-%d %H:%M") : ticket.ticket_changes.last.created_at.strftime("%Y-%m-%d %H:%M") -%></td> | |
</tr> | ||
<% end %> | ||
</table> |