Welcome to mirror list, hosted at ThFree Co, Russian Federation.

show.html.haml « hook_logs « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ccde1599050c3b239585c9b89205e4ec27caa64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- page_title _('Request details')
%h1.page-title.gl-font-size-h-display
  = _("Request details")

%hr

- if @hook_log.oversize?
  - tooltip = _("Request data is too large")
  = render Pajamas::ButtonComponent.new(disabled: true, button_options: { class: 'gl-float-right gl-ml-3 has-tooltip', title: tooltip }) do
    = _("Resend Request")
- else
  = render Pajamas::ButtonComponent.new(href: retry_admin_hook_hook_log_path(@hook, @hook_log), method: :post, button_options: { class: 'gl-float-right gl-ml-3' }) do
    = _("Resend Request")

= render partial: 'shared/hook_logs/content', locals: { hook_log: @hook_log }