Sha256: 0f205c9bde2f87f267a5df1cdf4a64a58ce28c9f38a003eaf24ce980745601ba

Contents?: true

Size: 724 Bytes

Versions: 15

Compression:

Stored size: 724 Bytes

Contents

<a class="button icon arrowleft" href="/projects">Back to Projects</a>
<div id="listing">
  <table>
    <thead>
      <tr>
        <th>Description</th>
        <th>Due</th>
        <th>Tags</th>
        <th>Priority</th>
      </tr>
    </thead>
    <tbody>
      <% @tasks.each do |task| %>
        <% if task.status == 'pending' %>
          <tr class="<%= colorize_date(task.due) %>">
            <td><%= task.description %></td>
            <td><%= format_date(task.due) unless task.due.nil? %></td>
            <td><%= task.tags.join(', ') unless task.tags.nil? %></td>
            <td><%= task.priority unless task.priority.nil? %></td>
          </tr>
        <% end %>
      <% end %>
    </tbody>
  </table>
</div>

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
taskwarrior-web-1.0.2 lib/taskwarrior-web/views/project.erb
taskwarrior-web-1.0.1 lib/taskwarrior-web/views/project.erb
taskwarrior-web-1.0.0 lib/taskwarrior-web/views/project.erb
taskwarrior-web-0.0.15 lib/taskwarrior-web/views/project.erb
taskwarrior-web-0.0.14 views/project.erb
taskwarrior-web-0.0.13 views/project.erb
taskwarrior-web-0.0.12 views/project.erb
taskwarrior-web-0.0.11 views/project.erb
taskwarrior-web-0.0.10 views/project.erb
taskwarrior-web-0.0.9 views/project.erb
taskwarrior-web-0.0.8 views/project.erb
taskwarrior-web-0.0.7 views/project.erb
taskwarrior-web-0.0.6 views/project.erb
taskwarrior-web-0.0.5 views/project.erb
taskwarrior-web-0.0.4 views/project.erb