Skip to content

Commit

Permalink
fix user_email_domain copy
Browse files Browse the repository at this point in the history
  • Loading branch information
groovecoder committed Mar 16, 2021
1 parent 34a50a1 commit f71482c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion privaterelay/templates/includes/banners.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<div class="banner-copy flx flx-col">
<p class="banner-hl ff-Met">Your domain is:</p>
<p class="banner-sub">{{ user_profile.subdomain }}</p>
<p>You can make up any address {% user_email_domain user_profile %}</p>
<p>You can make up any address @{% user_email_domain user_profile %}</p>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion privaterelay/templatetags/relay_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ def remaining_free_aliases(aliases):

@register.simple_tag
def user_email_domain(user_profile):
return "%s@%s" % (user_profile.subdomain, urlparse(settings.SITE_ORIGIN).netloc)
return "%s.%s" % (user_profile.subdomain, urlparse(settings.SITE_ORIGIN).netloc)

0 comments on commit f71482c

Please sign in to comment.