Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorNathan Friend <nathan@gitlab.com>2019-08-23 22:08:23 +0300
committerNathan Friend <nathan@gitlab.com>2019-08-30 17:15:40 +0300
commit9d0a7fa6f95718c5685b421193b35a546d47bce5 (patch)
tree542ad64286a5591c48986e5ae47d209cad20fae8 /app
parent79011fab0852de16e6b850ced4f282c97f4e8301 (diff)
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.
Diffstat (limited to 'app')
-rw-r--r--app/views/projects/pages/_access.html.haml4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/projects/pages/_access.html.haml b/app/views/projects/pages/_access.html.haml
index 73ea30e1d3d..539f223ca9b 100644
--- a/app/views/projects/pages/_access.html.haml
+++ b/app/views/projects/pages/_access.html.haml
@@ -5,9 +5,11 @@
.card-body
%p
%strong
- Congratulations! Your pages are served under:
+ = _("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.")