Sha256: 51009d3c504021695f560eac97ec280d5b52c142fb4bb8ea016b0161af69bc81
Contents?: true
Size: 551 Bytes
Versions: 12
Compression:
Stored size: 551 Bytes
Contents
<%= grid(@versions_grid1, html: {class: 'my-grid'}, header_tr_html: {class: 'my-header'}) do |g| g.column name: 'ID', attribute: 'id', filter: false g.column name: 'Project', attribute: 'name', assoc: :project do |version| version.project.name if version.project end g.column name: 'Version name', attribute: 'name', html: {style: 'font-weight: bold; text-align: center'} g.column name: 'Status', attribute: 'status', custom_filter: {'Development' => 'development', 'Testing' => 'testing', 'Production' => 'production'} end -%>
Version data entries
12 entries across 12 versions & 2 rubygems