mirror of
https://github.com/TracksApp/tracks.git
synced 2026-04-17 17:54:35 +02:00
make cucumber scenarios pass
This commit is contained in:
parent
12d8915eda
commit
a4d98a705a
3 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
<% note = note_details -%>
|
<% note = note_details -%>
|
||||||
<div class="note_boby"><%= format_note(note.body) %></div>
|
<div class="note_boby"><%= Tracks::Utils.render_text(note.body) %></div>
|
||||||
|
|
||||||
<div class="note_footer">
|
<div class="note_footer">
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
<%= link_to_edit_project(project, t('projects.edit_project_settings')) %>
|
<%= link_to_edit_project(project, t('projects.edit_project_settings')) %>
|
||||||
</div>
|
</div>
|
||||||
<% unless project.description.blank? -%>
|
<% unless project.description.blank? -%>
|
||||||
<div class="project_description"><%= format_note(project.description) %></div>
|
<div class="project_description"><%= Tracks::Utils.render_text(project.description) %></div>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
</div>
|
</div>
|
||||||
<div id="<%= dom_id(project, 'edit') %>" class="edit-form" style="display:none;">
|
<div id="<%= dom_id(project, 'edit') %>" class="edit-form" style="display:none;">
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<h2><%= t('todos.next_action_description') + " (" + link_to(t('common.go_back'), @return_path) %>)</h2>
|
<h2><%= t('todos.next_action_description') + " (" + link_to(t('common.go_back'), @return_path) %>)</h2>
|
||||||
<%= link_to @todo.description, todo_path(@todo, :format => 'm') -%>
|
<%= link_to @todo.description, todo_path(@todo, :format => 'm') -%>
|
||||||
<h2><%= t('todos.notes') %></h2>
|
<h2><%= t('todos.notes') %></h2>
|
||||||
<%= format_note(@todo.notes) %>
|
<%= Tracks::Utils.render_text(@todo.notes) %>
|
||||||
<%= link_to t('common.back'), @return_path %>
|
<%= link_to t('common.back'), @return_path %>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue