Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
</div>

<div class="content">
<p>Hello, {{user_name}}</p>
<p>Hello,</p>

<p>Your access request for {{application_name}} has been denied.</p>
<p>If you have any questions or believe you should have been approved, please email <a class="cta-link" href="mailto:EAO.EPICsystem@gov.bc.ca">EAO.EPICsystem@gov.bc.ca</a>.</p>
Expand Down
9 changes: 6 additions & 3 deletions submit-cron/templates/centre/access_granted_notification.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@
.cta-link:hover {
text-decoration: underline;
}
.label-black {
color: black;
}
</style>
</head>
<body>
Expand All @@ -69,14 +72,14 @@
</div>

<div class="content">
<p>Hello, {{user_name}}</p>
<p>Hello,</p>

<p>Your access request has been approved.</p>

<p><strong>Access Details:</strong></p>
<div class="grey-box">
<p><strong>Application:</strong> {{ application_name }}</p>
<p><strong>Access Level:</strong> {{ access_level }}</p>
<p><strong><span class="label-black">Application:</span></strong> {{ application_name }}</p>
<p><strong><span class="label-black">Access Level:</span></strong> {{ access_level }}</p>
</div>

<p>You can now access this application from the <strong><a class="cta-link" href="{{ auth_link }}">EPIC.centre launchpad</a></strong>.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@
<p>A confirmation email will be sent to the requester when their access level is updated in EPIC.centre.</p>

<p>Thank you,</p>

<p><strong>EPIC.centre System</strong></p>
</div>

<div class="footer">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@
.cta-link:hover {
text-decoration: underline;
}
.label-black {
color: black;
}
</style>
</head>
<body>
Expand All @@ -61,15 +64,15 @@
</div>

<div class="content">
<p>Hello <strong>{{ user_name }}</strong>,</p>
<p>Hello,</p>

<p>Your request for access to {{ application_name }} has been submitted successfully.</p>

<p><strong>Request Details:</strong></p>

<div class="grey-box">
<p><strong>Application:</strong> {{ application_name }}</p>
<p><strong>Requested on:</strong> {{ requested_at }}</p>
<p><strong><span class="label-black">Application:</span></strong> {{ application_name }}</p>
<p><strong><span class="label-black">Requested on:</span></strong> {{ requested_at }}</p>
</div>

<p>
Expand Down
Loading