Sha256: 8c0866cce2c7933101577e0390f241a4c20c68bc2dec32b52b070b276c3df423
Contents?: true
Size: 1.42 KB
Versions: 3
Compression:
Stored size: 1.42 KB
Contents
<%= include_javascript if SETTINGS[:version].short == '1.9' %> <%= javascript 'lookup_keys' %> <%= javascript 'template_input' %> <% title _("Job Templates") %> <% title_actions(documentation_button_rex('3.1JobTemplates'), display_link_if_authorized(_("New Job Template"), hash_for_new_job_template_path)) %> <table class="table table-bordered table-striped table-two-pane"> <thead> <tr> <th><%= sort :name, :as => s_("JobTemplate|Name") %></th> <th><%= sort :snippet, :as => s_("JobTemplate|Snippet") %></th> <th><%= sort :locked, :as => s_("JobTemplate|Locked"), :default => "DESC" %></th> <th></th> </tr> </thead> <tbody> <% for job_template in @templates %> <tr> <td class="display-two-pane"><%= link_to_if_authorized trunc_with_tooltip(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 %>
Version data entries
3 entries across 3 versions & 1 rubygems