summaryrefslogtreecommitdiff
path: root/app/views/backup_jobs/_index_core.html.haml
blob: 6babf3e325523ccfbb8f440d5fa9a36450257783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%table.table.table-striped
  %tr
    %th= t('backup_jobs.index.started_at')
    %th= t('backup_jobs.index.finished_at')
    %th= t('backup_jobs.index.state')
    %th= t('backup_jobs.index.directory')
    %th= t('backup_jobs.index.size_of_the_backup')

  
  - for backup_job in backup_jobs
    %tr
      %td= backup_job.started_at
      %td= backup_job.finished_at
      %td= backup_job.state
      %td= backup_job.directory
      %td= backup_job.size_of_the_backup
      =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:child => backup_job}