Sha256: 6dbe8e04a96ecfb302aef506ae6c7b4a9fbebba5bca9e79eec1f7937f9b65a8b

Contents?: true

Size: 1.15 KB

Versions: 2

Compression:

Stored size: 1.15 KB

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">Dossier</Data></Cell>
        <Cell><Data ss:Type="String">Avancement dossier</Data></Cell>
        <Cell><Data ss:Type="String">Tâche</Data></Cell>
        <Cell><Data ss:Type="String">Avancement tâche</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"><%= percentage(task.goal.progress) %></Data></Cell>
        <Cell><Data ss:Type="String"><%= task.title %></Data></Cell>
        <Cell><Data ss:Type="String"><%= percentage(task.progress) %></Data></Cell>
        <Cell><Data ss:Type="String"><%= l(task.term) %></Data></Cell>
      </Row>
    <% end %>
    </Table>
  </Worksheet>
</Workbook>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
flyboy-1.0.7 app/views/flyboy/tasks/index.xls.erb
flyboy-1.0.6 app/views/flyboy/tasks/index.xls.erb