mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
27 lines
551 B
Text
27 lines
551 B
Text
<h1>Score: <span id="score"><%= @score %></span></h1>
|
|
<%= link_to 'New Habit', new_habit_path %>
|
|
|
|
<table>
|
|
<tr><td>
|
|
<div id="habits">
|
|
<h2>Habits</h2>
|
|
<ul>
|
|
<% @habits.each do |habit| %>
|
|
<li><%= render :partial => "habit", :locals => { :habit => habit } %></li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
<div id="daily">
|
|
<h2>Daily</h2>
|
|
<ul>
|
|
<% @daily.each do |habit| %>
|
|
<li><%= render :partial => "habit", :locals => { :habit => habit } %></li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
</td></tr>
|
|
|
|
</table>
|