rosa-build/app/views/platforms/tokens/index.html.slim

26 lines
837 B
Plaintext
Raw Normal View History

2014-10-27 21:33:24 +00:00
- set_meta_tags title: [title_object(@platform), t('layout.tokens.header')]
= render 'submenu'
.container.col-md-offset-2.col-md-8
2014-10-27 21:33:24 +00:00
.row
a.btn.btn-primary href=new_platform_token_path(@platform)
= t('layout.tokens.new')
2014-10-28 19:20:23 +00:00
hr
2014-10-27 21:33:24 +00:00
.row
table.table.table-striped
thead
tr
th= t('activerecord.attributes.token.description')
th= t('activerecord.attributes.token.creator')
th= t('activerecord.attributes.token.status')
th
tbody
- @tokens.each do |token|
tr
td= truncate token.description, length: 50
td= link_to token.creator.try(:fullname), token.creator
td= t("layout.tokens.statuses.#{token.status}")
td= link_to t('layout.show'), platform_token_path(@platform, token)
= will_paginate @tokens