2016-09-13 17:45:13 +05:30
|
|
|
- @no_container = true
|
|
|
|
- page_title 'Requests Profiles'
|
|
|
|
|
|
|
|
%div{ class: container_class }
|
|
|
|
%h3.page-title
|
|
|
|
= page_title
|
|
|
|
|
|
|
|
.bs-callout.clearfix
|
|
|
|
Pass the header
|
|
|
|
%code X-Profile-Token: #{@profile_token}
|
|
|
|
to profile the request
|
|
|
|
|
|
|
|
- if @profiles.present?
|
|
|
|
.prepend-top-default
|
|
|
|
- @profiles.each do |path, profiles|
|
2018-11-08 19:23:39 +05:30
|
|
|
.card.card-small
|
|
|
|
.card-header
|
2016-09-13 17:45:13 +05:30
|
|
|
%code= path
|
|
|
|
%ul.content-list
|
|
|
|
- profiles.each do |profile|
|
|
|
|
%li
|
2019-10-12 21:52:04 +05:30
|
|
|
= link_to profile.time.to_s(:long) + ' ' + profile.profile_mode.capitalize,
|
|
|
|
admin_requests_profile_path(profile)
|
2016-09-13 17:45:13 +05:30
|
|
|
- else
|
|
|
|
%p
|
|
|
|
No profiles found
|