Sha256: 1fd85c54d4c881406172a071ab63878682483dfd3c33dae7cfb963475f1db792
Contents?: true
Size: 1.7 KB
Versions: 2
Compression:
Stored size: 1.7 KB
Contents
<%= include_javascript if SETTINGS[:version].short == '1.9' %> <%= javascript 'job_templates' %> <%= javascript 'lookup_keys' %> <%= javascript 'template_input' %> <% title _("Job Templates") %> <% title_actions(documentation_button_rex('3.1JobTemplates'), link_to_function(_('Import'), 'show_import_job_template_modal();', :class => 'btn btn-default'), display_link_if_authorized(_("New Job Template"), hash_for_new_job_template_path)) %> <table class="table table-bordered table-striped table-two-pane table-fixed"> <thead> <tr> <th class="col-md-6"><%= sort :name, :as => s_("JobTemplate|Name") %></th> <th class="col-md-1"><%= sort :snippet, :as => s_("JobTemplate|Snippet") %></th> <th class="col-md-1"><%= sort :locked, :as => s_("JobTemplate|Locked"), :default => "DESC" %></th> <th class="col-md-1"><%= _('Actions') %></th> </tr> </thead> <tbody> <% for job_template in @templates %> <tr> <td class="display-two-pane ellipsis"><%= link_to_if_authorized job_template, hash_for_edit_job_template_path(:id => job_template).merge(:auth_object => job_template, :authorizer => authorizer) %></td> <td align='center'><%= checked_icon job_template.snippet %></td> <td align='center'> <%= locked_icon job_template.locked?, _("This template is locked for editing.") %> </td> <td> <%= action_buttons(*permitted_actions(job_template)) %> </td> </tr> <% end %> </tbody> </table> <%= will_paginate_with_info @templates %> <%= render :partial => 'import_job_template_modal' %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
foreman_remote_execution-0.3.2 | app/views/job_templates/index.html.erb |
foreman_remote_execution-0.3.1 | app/views/job_templates/index.html.erb |