diff --git a/app/views/shared/_flash.m.erb b/app/views/shared/_flash.m.erb index 86f9fc2c..45acd97d 100644 --- a/app/views/shared/_flash.m.erb +++ b/app/views/shared/_flash.m.erb @@ -3,7 +3,7 @@ <% else -%> <% flash.each do |key,value| -%> -

<%= value %>

+

<%= value.html_safe %>

<% end -%> <% end -%> - \ No newline at end of file + diff --git a/app/views/shared/_footer.html.erb b/app/views/shared/_footer.html.erb index 913efc70..a594db1a 100644 --- a/app/views/shared/_footer.html.erb +++ b/app/views/shared/_footer.html.erb @@ -4,5 +4,5 @@ <%= t('common.email')%> | <%= t('common.website')%> | <%= t('common.contribute')%>

- <%= t('layouts.navigation.mobile')%> + <%= link_to(t('layouts.navigation.mobile'), todos_path(:format => 'm')) %> diff --git a/app/views/todos/_todo.m.erb b/app/views/todos/_todo.m.erb index ff1d58bd..2af89553 100644 --- a/app/views/todos/_todo.m.erb +++ b/app/views/todos/_todo.m.erb @@ -1,6 +1,6 @@ <% @todo = todo -%>
  • -<% remote_mobile_checkbox(todo) %> +<%= remote_mobile_checkbox(todo) %> <%= date_span -%> <%= link_to todo.description, todo_path(todo, :format => 'm') -%> <% unless todo.notes.blank? %> <%= link_to(image_tag("mobile_notes.png", :border => "0"), show_notes_todo_path(todo, :format => 'm')) -%>