Sha256: 78aab10a488c972d927c0cad686db36981b956e7af1242dfe89829ef7d6c87db

Contents?: true

Size: 862 Bytes

Versions: 6

Compression:

Stored size: 862 Bytes

Contents

<?xml version="1.0"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
  xmlns:o="urn:schemas-microsoft-com:office:office"
  xmlns:x="urn:schemas-microsoft-com:office:excel"
  xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
  xmlns:html="http://www.w3.org/TR/REC-html40">
  <Worksheet ss:Name="Sheet1">
    <Table>
      <Row>
        <Cell><Data ss:Type="String">Action</Data></Cell>
        <Cell><Data ss:Type="String">Titre</Data></Cell>
        <Cell><Data ss:Type="String">Echéance</Data></Cell>
      </Row>
    <% @tasks.each do |task| %>
      <Row>
        <Cell><Data ss:Type="String"><%= task.goal.title %></Data></Cell>
        <Cell><Data ss:Type="String"><%= task.title %></Data></Cell>
        <Cell><Data ss:Type="String"><%= l task.term %></Data></Cell>
      </Row>
    <% end %>
    </Table>
  </Worksheet>
</Workbook>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
flyboy-0.0.6 app/views/flyboy/tasks/index.xls.erb
flyboy-0.0.5 app/views/flyboy/tasks/index.xls.erb
flyboy-0.0.4 app/views/flyboy/tasks/index.xls.erb
flyboy-0.0.3 app/views/flyboy/tasks/index.xls.erb
flyboy-0.0.2 app/views/flyboy/tasks/index.xls.erb
flyboy-0.0.1 app/views/flyboy/tasks/index.xls.erb