mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-14 19:28:10 +01:00
* Fixed a bug where pages other than the first page in filtered views would generate an error. It turns out to be difficult to paginate the filtered pages without increasing complexity quite a lot, so I'm leaving them unpaginated. By definition, viewing single contexts or projects should involve a much smaller subset than all the active todos. * Edited actions were getting 'state' set to zero rather than active or completed. Fixed that and made sure that checking the 'done' box completes the action * Changed some of the names of actions to bring them more in line with the todo_controller (i.e. list -> index, update_action -> update) * Added functional tests for mobile actions git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@347 a4c988fc-2ded-0310-b66e-134b36920a42
5 lines
No EOL
255 B
Text
5 lines
No EOL
255 B
Text
<h1><span class="count"><%= @count.to_s %></span> <%= @desc %>
|
|
<%= link_to "+", :controller => 'mobile', :action => 'add_action' %></h1>
|
|
<hr />
|
|
<%= render :partial => 'mobile_actions' %>
|
|
<%= link_to "Logout", :controller => 'login', :action => 'logout' %> |