Skip to content

Commit

Permalink
Fix expiry date not being shown to users. (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
amanning9 committed May 19, 2022
1 parent 7ff8da8 commit 908d896
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ The following access has expired:
Service: {{ target.access.role.service }}
Role: {{ target.access.role.name }}
User: {{ target.access.user }}
Expired: {{ target.access.expires }}
Expired: {{ target.expires }}

You are receiving this email as a designated responsible user for this service user.

Please contact the system administrator to renew this access.
{% else %}
Service: {{ target.access.role.service }}
Role: {{ target.access.role.name }}
Expired: {{ target.access.expires }}
Expired: {{ target.expires }}

Please visit {{ follow_link }} to apply for an extension.
{% endif %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ The following access will expire soon:
Service: {{ target.access.role.service }}
Role: {{ target.access.role.name }}
User: {{ target.access.user }}
Expires: {{ target.access.expires }}
Expires: {{ target.expires }}

You are receiving this email as a designated responsible user for this service user.

Please contact the system administrator to renew this access.
{% else %}
Service: {{ target.access.role.service }}
Role: {{ target.access.role.name }}
Expires: {{ target.access.expires }}
Expires: {{ target.expires }}

Please visit {{ follow_link }} to review your current access and apply for an extension.
{% endif %}
Expand Down

0 comments on commit 908d896

Please sign in to comment.