mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-13 13:12:42 +00:00
Add "mailto" anchor to Professional Services
This commit is contained in:
@ -34,7 +34,7 @@ class Migration(migrations.Migration):
|
||||
('provides_support', models.BooleanField(default=False)),
|
||||
('provides_hosting', models.BooleanField(default=False)),
|
||||
('interfaces', models.CharField(max_length=512, null=True, verbose_name=b'Interfaces (for hosting)', blank=True)),
|
||||
('org', models.OneToOneField(db_column=b'organisation_id', to='core.Organisation', help_text=b'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.', verbose_name=b'organisation')),
|
||||
('org', models.OneToOneField(db_column=b'organisation_id', to='core.Organisation', help_text=b'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.', verbose_name=b'organisation')),
|
||||
],
|
||||
options={
|
||||
'ordering': ('org__name',),
|
||||
|
@ -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)
|
||||
|
Reference in New Issue
Block a user