Skip to content
This repository has been archived by the owner on Aug 24, 2022. It is now read-only.

Commit

Permalink
removed institute-specific emails from templates and request/views.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Manke committed Nov 20, 2020
1 parent 50f13c2 commit df27f00
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions common/templates/500.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<h1>500</h1>
<p>
Something went wrong and server could not process your request.<br />
Try going back to the <a href="{% url 'index' %}">Home page</a> or contact the <a href="mailto://dpryan79@gmail.com">administrator</a>.
Try going back to the <a href="{% url 'index' %}">Home page</a> or contact the administrator.
</p>
</div>
{% endblock %}
{% endblock %}
2 changes: 1 addition & 1 deletion common/templates/registration/account_creation_email_.html
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ <h1>Hi {{ user.name }},</h1>
</tr>
</table>
<p>Your username, in case you've forgotten: {{ user.get_username }}</p>
<p class="center"><strong>anatskiy@ie-freiburg.mpg.de</strong></p>
<p class="center"><strong> </strong></p>
<p>Thanks,<br>Parkour Support</p>
</td>
</tr>
Expand Down
3 changes: 1 addition & 2 deletions request/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,8 +550,7 @@ def send_email(self, request, pk=None): # pragma: no cover
'message': message,
'records': records,
}),
# from_email=settings.SERVER_EMAIL,
from_email='deepseq@ie-freiburg.mpg.de',
from_email=settings.SERVER_EMAIL,
recipient_list=[instance.user.email],
)

Expand Down

0 comments on commit df27f00

Please sign in to comment.