Sha256: 2ba0e6a944b1e7e9bf752ff671e81c03c96ec9b459ac2a04e6d442c1b2e016a2

Contents?: true

Size: 1008 Bytes

Versions: 5

Compression:

Stored size: 1008 Bytes

Contents

<section id="todoapp" class="<%= "has_todos" if @todos.unscoped.count > 0 %> <%= todos_filter_class %>">


  <header id="header">
    <h1>todos</h1>
    <%= form_for(Todo.new, remote: true) do |f| %>
      <%= f.text_field :title, placeholder: "What needs to be done?", id: "new-todo", autofocus: true, "data-behavior" => "submit_on_enter" %>
    <% end %>
  </header>


  <section id="main">
    <%= form_tag(toggle_all_todos_path, method: :post, remote: true) do %>
      <input name="completed" id="toggle-all" type="checkbox" value="true" data-behavior="submit_on_check" <%= "checked" if @todos.active.count == 0 %>>
    <% end %>
    <label for="toggle-all">Mark all as complete</label>
    <ul id="todo-list">
      <%= render @todos.all %>
    </ul>
  </section>


  <%= render "footer" %>


</section>


<footer id="info">
  <p>Double-click to edit a todo</p>
  <p>Created by <a href="mailto: smidwap@gmail.com">Matt De Leon</a></p>
  <p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
half-pipe-0.3.0.beta.2 examples/todomvc-rails/app/views/todos/index.html.erb
half-pipe-0.3.0.beta.1 examples/todomvc-rails/app/views/todos/index.html.erb
half-pipe-0.3.0.alpha.5 examples/todomvc-rails/app/views/todos/index.html.erb
half-pipe-0.3.0.alpha.4 examples/todomvc-rails/app/views/todos/index.html.erb
half-pipe-0.3.0.alpha.3 examples/todomvc-rails/app/views/todos/index.html.erb