File: _project_limit.html.haml

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (9 lines) | stat: -rw-r--r-- 734 bytes parent folder | download
1
2
3
4
5
6
7
8
9
- if cookies[:hide_project_limit_message].blank? && !current_user.hide_project_limit && !current_user.can_create_project? && current_user.projects_limit > 0
  = render Pajamas::AlertComponent.new(variant: :warning,
    dismissible: false,
    alert_options: { class: 'project-limit-message' }) do |c|
    - c.with_body do
      = _("You cannot create new projects in your personal namespace because you have reached your personal project limit.")
    - c.with_actions do
      = link_button_to _('Remind later'), '#', class: 'alert-link hide-project-limit-message', variant: :confirm
      = link_button_to _("Don't show again"), user_settings_profile_path(user: {hide_project_limit: true}), method: :put, class: 'alert-link gl-ml-3'