aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/notes/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/notes/index.html.erb')
-rw-r--r--app/views/notes/index.html.erb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/views/notes/index.html.erb b/app/views/notes/index.html.erb
index 28d2850..5019db5 100644
--- a/app/views/notes/index.html.erb
+++ b/app/views/notes/index.html.erb
@@ -1,3 +1,9 @@
<% @notebooks.each do |b| %>
<%= b.name %><br />
+
+ <% b.notes.each do |n| %>
+ <%= n.title %><br />
+ <%= n.enml.html_safe %><br />
+ <%= n.tags %>
+ <% end %>
<% end %>