Sha256: 589d220d2a509e62742002605554ad8c87918dd7343ae3315b2f99ccb705e37a

Contents?: true

Size: 441 Bytes

Versions: 11

Compression:

Stored size: 441 Bytes

Contents

<Page title="TodoList">
  <a href="/new">New Task</a>
  <?r if @tasks.empty? ?>
    No Tasks
  <?r else ?>
    <table>
      <?r @tasks.each do |title, status, toggle, delete| ?>
        <tr>
          <td class="title">  #{title}  </td>
          <td class="status"> #{status} </td>
          <td class="toggle"> #{toggle} </td>
          <td class="delete"> #{delete} </td>
        </tr>
      <?r end ?>
    </table>
  <?r end ?>
</Page>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
ramaze-0.0.9 examples/todolist/template/index.xhtml
ramaze-0.0.8 examples/todolist/template/index.xhtml
ramaze-0.1.3 examples/todolist/template/index.xhtml
ramaze-0.1.1 examples/todolist/template/index.xhtml
ramaze-0.1.0 examples/todolist/template/index.xhtml
ramaze-0.1.2 examples/todolist/template/index.xhtml
ramaze-0.1.4 examples/todolist/template/index.xhtml
ramaze-0.2.0 examples/todolist/template/index.xhtml
ramaze-0.3.5 examples/todolist/template/index.xhtml
ramaze-0.3.0 examples/todolist/template/index.xhtml
ramaze-0.2.1 examples/todolist/template/index.xhtml