23 lines
723 B
Plaintext
23 lines
723 B
Plaintext
h3
|
|
= subject.class.human_attribute_name(subject.is_a?(BuildList) ? 'logs' : 'results')
|
|
h4 ng-hide='subject.results'
|
|
= t('layout.no_')
|
|
table.table.table-hover ng-show='subject.results'
|
|
thead
|
|
tr
|
|
th= t 'activerecord.attributes.product_build_list/results.file_name'
|
|
th= t 'activerecord.attributes.product_build_list/results.sha1'
|
|
th= t 'activerecord.attributes.product_build_list/results.size'
|
|
th= t 'activerecord.attributes.product_build_list/results.created_at'
|
|
tbody
|
|
tr ng-repeat='item in subject.results'
|
|
td
|
|
a ng-href='{{item.url}}'
|
|
| {{item.file_name}}
|
|
td
|
|
| {{item.sha1}}
|
|
td
|
|
| {{item.size}}
|
|
td
|
|
| {{item.created_at}}
|