diff options
author | Jonathan S. Katz | 2018-04-15 17:35:24 +0000 |
---|---|---|
committer | Jonathan S. Katz | 2018-04-15 17:35:24 +0000 |
commit | c12102ec53f0ace6489959b8c03a632c890d77ec (patch) | |
tree | 4bc69a0f45a8f0cf4530883855f144b17186e5d5 /pgweb/profserv/models.py | |
parent | dc3fae85f0a64b78d4e7f8b9ee6a589e3db240b4 (diff) |
Add "mailto" anchor to Professional Services
Diffstat (limited to 'pgweb/profserv/models.py')
-rw-r--r-- | pgweb/profserv/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pgweb/profserv/models.py b/pgweb/profserv/models.py index 076a1d98..c72b134d 100644 --- a/pgweb/profserv/models.py +++ b/pgweb/profserv/models.py @@ -8,7 +8,7 @@ class ProfessionalService(models.Model): org = models.OneToOneField(Organisation, null=False, blank=False, db_column="organisation_id", verbose_name="organisation", - help_text="If no organisations are listed, please check the <a href=\"/account/orglist/\">organisation list</a> and contact the organisation manager or webmaster@postgresql.org if none are listed.") + help_text="If no organisations are listed, please check the <a href=\"/account/orglist/\">organisation list</a> and contact the organisation manager or <a href=\"mailto:webmaster@postgresql.org\">webmaster@postgresql.org</a> if none are listed.") description = models.TextField(null=False,blank=False) employees = models.CharField(max_length=32, null=True, blank=True) locations = models.CharField(max_length=128, null=True, blank=True) |