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
2 changes: 1 addition & 1 deletion coldfront/core/utils/mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
CENTER_BASE_URL = import_from_settings("CENTER_BASE_URL")


def send_email(subject, body, sender, receiver_list, cc=[]):
def send_email(subject, body, sender, receiver_list, cc=None):
"""Helper function for sending emails"""

if not EMAIL_ENABLED:
Expand Down
3 changes: 1 addition & 2 deletions coldfront/templates/email/request_to_add_grants.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ The following projects within the HPC projects portal currently have no grants a
Project Title: {{ project_key }}
Project URL: {{ project_url }}
{% endfor %}

Please add grants that are associated with your project(s) as it will enable us to justify the necessity of offering the HPC service.
Please add grants that are associated with your project(s) as it will enable us to justify the necessity of offering the HPC service. You can find detailed instructions at https://services.rt.nyu.edu/docs/hpc/getting_started/adding_publications_grants/#enter-grants

Thank you,
{{ signature }}
3 changes: 1 addition & 2 deletions coldfront/templates/email/request_to_add_publications.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ Your project(s) within the HPC projects portal currently have no publications as
Project Title: {{ project_key }}
Project URL: {{ project_url }}
{% endfor %}

Please add publications that have resulted from the use of HPC resources for this project as it will enable us to justify the necessity of offering the HPC service.
Please add publications that have resulted from the use of HPC resources for this project as it will enable us to justify the necessity of offering the HPC service. You can find detailed instructions at https://services.rt.nyu.edu/docs/hpc/getting_started/adding_publications_grants/#enter-publications

Thank you,
{{ signature }}
Loading