public
Description: Tracks is a GTD(TM) web application, built with Ruby on Rails
Homepage: http://www.rousette.org.uk/projects/
Clone URL: git://github.com/bsag/tracks.git
Click here to lend your support to: tracks and make a donation at www.pledgie.com !
tracks / app / views / contexts / _mobile_context.rhtml
39a64989 » lrbalt 2008-04-19 merge new mobile interface ... 1 <%
2 # select actions from this context
3 @not_done = @not_done_todos.select {|t| t.context_id == mobile_context.id }
4
5 if not @not_done.empty?
6 # only show a context when there are actions in it
e72d8858 » lrbalt 2008-05-28 removed some whitespace to ... 7 -%>
8 <h2><%=mobile_context.name%></h2>
a0d23629 » Jakub A.Tesinsky 2008-12-01 Optimalized mobile pages - ... 9 <table cellpadding="0" cellspacing="0" border="0" class="c">
e72d8858 » lrbalt 2008-05-28 removed some whitespace to ... 10 <%= render :partial => "todos/mobile_todo",
11 :collection => @not_done,
12 :locals => { :parent_container_type => "context" }-%>
13 </table>
a0d23629 » Jakub A.Tesinsky 2008-12-01 Optimalized mobile pages - ... 14 <% end -%>