habitica-self-host/app/views/habits/index.html.erb

25 lines
532 B
Text
Raw Normal View History

2012-02-01 05:39:04 +00:00
<!-- <%= javascript_tag do %>
$("#habits").bind("ajax:complete", function(et, e){
$("#products-list").html(e.responseText); // insert content
});
<% end %> -->
2012-02-01 04:09:00 +00:00
2012-02-01 05:39:04 +00:00
<h2>Habits</h2>
2012-02-01 04:09:00 +00:00
2012-02-01 05:39:04 +00:00
<ul id="habits">
2012-02-01 04:09:00 +00:00
<% @habits.each do |habit| %>
2012-02-01 05:39:04 +00:00
<li><%= render :partial => "habit", :locals => { :habit => habit } %></li>
2012-02-01 04:09:00 +00:00
<% end %>
2012-02-01 05:39:04 +00:00
</ul>
<h2>ToDos</h2>
<ul id="todos">
<% @todos.each do |habit| %>
<li><%= render :partial => "habit", :locals => { :habit => habit } %></li>
<% end %>
</ul>
2012-02-01 04:09:00 +00:00
<br />
<%= link_to 'New Habit', new_habit_path %>