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-07-23 23:45:48 +05:30
|
|
|
alert_options: { class: 'project-limit-message' }) do |c|
|
2022-07-16 23:28:13 +05:30
|
|
|
= c.body do
|
2021-09-30 23:02:18 +05:30
|
|
|
= _("You won't be able to create new projects because you have reached your project limit.")
|
2022-07-16 23:28:13 +05:30
|
|
|
= c.actions do
|
2021-09-30 23:02:18 +05:30
|
|
|
= 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'
|