Skip to content

Commit

Permalink
Minor tweaks to website name wording
Browse files Browse the repository at this point in the history
  • Loading branch information
JackMorganNZ committed Aug 30, 2021
1 parent 43b9807 commit da84e19
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CodeWOF
# codeWOF

CodeWOF is a website for maintaining your basic programming skills, developed at the University of Canterbury in New Zealand.

Expand Down
7 changes: 5 additions & 2 deletions codewof/config/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,15 @@

DEFAULT_FROM_EMAIL = env( # noqa: F405
'DJANGO_DEFAULT_FROM_EMAIL',
default='CodeWOF <[email protected]>'
default='codeWOF <[email protected]>'
)
# https://docs.djangoproject.com/en/dev/ref/settings/#server-email
SERVER_EMAIL = env('DJANGO_SERVER_EMAIL', default=DEFAULT_FROM_EMAIL) # noqa: F405
# https://docs.djangoproject.com/en/dev/ref/settings/#email-subject-prefix
EMAIL_SUBJECT_PREFIX = env('DJANGO_EMAIL_SUBJECT_PREFIX', default='[CodeWOF] ') # noqa: F405
EMAIL_SUBJECT_PREFIX = env('DJANGO_EMAIL_SUBJECT_PREFIX', default='[codeWOF] ') # noqa: F405

# Email settings for all AllAuth
ACCOUNT_EMAIL_SUBJECT_PREFIX = EMAIL_SUBJECT_PREFIX

# reCAPTCHA
# ------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion codewof/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
</a>

{% if STAGING_ENVIRONMENT %}
<span class="badge badge-warning">Test server</span>
<span class="badge badge-warning">Test website</span>
{% endif %}

<div class="collapse navbar-collapse" id="navbarContent">
Expand Down

0 comments on commit da84e19

Please sign in to comment.