Project

General

Profile

Download (564 Bytes) Statistics
| Branch: | Tag: | Revision:
9cbce048 Ohad Levy
module PuppetcaHelper
2ac8d7ba Tomer Brisker
STATES = [N_('pending'), N_('valid'), N_('revoked')]
CA_ICONS = { 'valid' => 'pficon pficon-ok',
'pending' => 'pficon pficon-warning-triangle-o',
'revoked' => 'fa fa-ban' }

73b01046 Ohad Levy
def state_filter
9d43fc71 Michael Moll
select_tag "Filter", options_for_select([[_('valid or pending'), _('valid') + '|' + _('pending')]] +
2ac8d7ba Tomer Brisker
STATES.map{|s| _(s)} +
3cd8c84b Michael Moll
[[_('all'), '']]),
33d9f9ee Lukas Zapletal
:class => "datatable-filter", :id => "puppetca-filter"
73b01046 Ohad Levy
end
2a0cffd3 Ohad Levy
end