Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Insert link to email into "contact us" phrases #675

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion cadasta/templates/allauth/account/password_reset_done.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ <h1>{% trans "Password Reset" %}</h1>
{% include "account/snippets/already_logged_in.html" %}
{% endif %}

<p>{% blocktrans %}We have sent you an e-mail. Please contact us if you do not receive it within a few minutes.{% endblocktrans %}</p>
<p>{% blocktrans %}We have sent you an e-mail. Please <a href="mailto:[email protected]">contact us</a> if you do not receive it within a few minutes.{% endblocktrans %}</p>
{% endblock %}
2 changes: 1 addition & 1 deletion cadasta/templates/allauth/account/verification_sent.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
{% block content %}
<h1>{% trans "Verify Your E-mail Address" %}</h1>

<p>{% blocktrans %}We have sent an e-mail to you for verification. Follow the link provided to finalize the signup process. Please contact us if you do not receive it within a few minutes.{% endblocktrans %}</p>
<p>{% blocktrans %}We have sent an e-mail to you for verification. Follow the link provided to finalize the signup process. Please <a href="mailto:[email protected]">contact us</a> if you do not receive it within a few minutes.{% endblocktrans %}</p>

{% endblock %}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h1>{% trans "Verify Your E-mail Address" %}</h1>

<p>{% blocktrans %}We have sent an e-mail to you for
verification. Please click on the link inside this e-mail. Please
contact us if you do not receive it within a few minutes.{% endblocktrans %}</p>
<a href="mailto:[email protected]">contact us</a> if you do not receive it within a few minutes.{% endblocktrans %}</p>

<p>{% blocktrans %}<strong>Note:</strong> you can still <a href="{{ email_url }}">change your e-mail address</a>.{% endblocktrans %}</p>

Expand Down