debian-mirror-gitlab/app/views/shared/_project_limit.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
692 B
Text
Raw Normal View History

2016-04-02 18:10:28 +05:30
- if cookies[:hide_project_limit_message].blank? && !current_user.hide_project_limit && !current_user.can_create_project? && current_user.projects_limit > 0
2022-06-21 17:19:12 +05:30
= render Pajamas::AlertComponent.new(variant: :warning,
2021-09-30 23:02:18 +05:30
dismissible: false,
2022-06-21 17:19:12 +05:30
alert_class: 'project-limit-message') do
2021-09-30 23:02:18 +05:30
.gl-alert-body
= _("You won't be able to create new projects because you have reached your project limit.")
.gl-alert-actions
= link_to _('Remind later'), '#', class: 'alert-link hide-project-limit-message btn gl-button btn-confirm'
= link_to _("Don't show again"), profile_path(user: {hide_project_limit: true}), method: :put, class: 'alert-link btn gl-button btn-default gl-ml-3'