Skip to content

Commit d19bb41

Browse files
committed
Replace more instances of 'DEAR' name
- where possible, replace with site.name driven by Django DB - elsewhere, hard-code with WExT for our use.
1 parent e034e0b commit d19bb41

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

config/settings/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,8 @@
234234
# Django Admin URL.
235235
ADMIN_URL = "admin/"
236236
# https://docs.djangoproject.com/en/dev/ref/settings/#admins
237-
ADMINS = [("""Code for Durham""", "ccopeland@codeforamerica.org")]
237+
# TODO: fix admin email.
238+
ADMINS = [("""Code for Asheville""", "ccopeland@codeforamerica.org")]
238239
# https://docs.djangoproject.com/en/dev/ref/settings/#managers
239240
MANAGERS = ADMINS
240241

dear_petition/templates/accounts/password_reset_email.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% autoescape off %}
2-
Click the link below to reset the password for the DEAR Petition user: {{ user.get_username }}
2+
Click the link below to reset the password for the {{ site=_name }} user: {{ user.get_username }}
33

44
{{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}
55

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
DEAR Petition password reset
1+
{{ site_name }} password reset

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta name="theme-color" content="#000000" />
8-
<title>DEAR Petition Generator</title>
8+
<title>WExT Petition Generator</title>
99
</head>
1010
<body>
1111
<noscript>You need to enable JavaScript to run this app.</noscript>

0 commit comments

Comments
 (0)