<%= _('Tasks that I requested') %>
<% @tasks.each do |task| %>
-
<%= task.respond_to?(:title) ? link_to( task.title, :action => 'ticket_details', :id => task.id).html_safe : task.information %>
<%= _('Created:') + ' ' + show_date(task.created_at) %>
<%= _('Status:') + ' ' + task.status.to_s %>
<% end %>
<%= button_bar do %>
<%= button :back, _('Back'), :action => 'index' %>
<% end %>