2018-04-10 17:29:42 -04:00
|
|
|
- if cookies[:hide_project_limit_message].blank? && !current_user.hide_project_limit && !current_user.can_create_project? && current_user.projects_limit > 0
|
2020-09-10 23:08:39 -04:00
|
|
|
.project-limit-message.gl-alert.gl-alert-warning.gl-display-none.gl-display-sm-block
|
2020-05-15 05:07:59 -04:00
|
|
|
= _("You won't be able to create new projects because you have reached your project limit.")
|
2015-12-02 19:02:15 -05:00
|
|
|
|
2018-04-09 13:42:45 -04:00
|
|
|
.float-right
|
2020-05-15 05:07:59 -04:00
|
|
|
= link_to _("Don't show again"), profile_path(user: {hide_project_limit: true}), method: :put, class: 'alert-link'
|
2015-12-02 19:02:15 -05:00
|
|
|
|
|
2020-05-15 05:07:59 -04:00
|
|
|
= link_to _('Remind later'), '#', class: 'hide-project-limit-message alert-link'
|