Sha256: 4319a19ebdbba2df424354d8eec2aa44cf94a9c8d7d0a5badb4828d8add5164d

Contents?: true

Size: 1.15 KB

Versions: 6

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

6 entries across 6 versions & 1 rubygems

Version Path
flyboy-1.0.5 app/views/flyboy/tasks/index.xls.erb
flyboy-1.0.4 app/views/flyboy/tasks/index.xls.erb
flyboy-1.0.3 app/views/flyboy/tasks/index.xls.erb
flyboy-1.0.2 app/views/flyboy/tasks/index.xls.erb
flyboy-1.0.1 app/views/flyboy/tasks/index.xls.erb
flyboy-1.0.0 app/views/flyboy/tasks/index.xls.erb