% @todo = mobile_todo
if mobile_todo.starred?
bullet = ""+image_tag("menustar_small.gif")+""
else
bullet = "» "
end -%>
| <%= bullet %> |
<% if mobile_todo.completed? -%>
<% else -%>
<% end -%>
<%= date_span -%>
<%= link_to mobile_todo.description, formatted_todo_path(mobile_todo, :m) %>
<% if parent_container_type == 'context' or parent_container_type == 'tag' -%>
<%= "(" +
link_to(mobile_todo.project.name, formatted_project_path(mobile_todo.project, :m)) +
")" unless mobile_todo.project.nil? %>
<% end
if parent_container_type == 'project' or parent_container_type == 'tag' -%>
<%= "(" +
link_to(mobile_todo.context.name, formatted_context_path(mobile_todo.context, :m)) +
")" %>
<% end -%>
<%= tag_list_mobile %>
|