gitlab-org--gitlab-foss/app/views/projects/pages/_access.html.haml
Nathan Friend 9d0a7fa6f9
Add warning about Pages initial deployment delay
This commit adds a warning message that is always displayed that informs
users that their GitLab Pages sites will take a bit of time before they
can be accessed after being deployed for the first time.
2019-08-30 11:15:40 -03:00

15 lines
440 B
Text

- if @project.pages_deployed?
.card
.card-header
Access pages
.card-body
%p
%strong
= _("Your pages are served under:")
%p= link_to @project.pages_url, @project.pages_url
- @project.pages_domains.each do |domain|
%p= link_to domain.url, domain.url
.card-footer.alert-primary
= _("It may take up to 30 minutes before the site is available after the first deployment.")