Sha256: 6def54ce258a57319baf3a6b6a0af8de91f7b7e521c9de891a605f59e2b52e49
Contents?: true
Size: 1.55 KB
Versions: 17
Compression:
Stored size: 1.55 KB
Contents
<%= 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'), new_link(_("New Job Template"))) %> <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
17 entries across 17 versions & 1 rubygems