diff options
author | Jonathan S. Katz | 2017-11-25 14:43:20 +0000 |
---|---|---|
committer | Jonathan S. Katz | 2017-11-29 13:21:35 +0000 |
commit | 2f52c4f7c4aacf1ab15a3da29e44028a97d524e1 (patch) | |
tree | db8642c4185488aec0fa1629b49dc1444b132fbf /pgweb/profserv/models.py | |
parent | 530b3c42e3da012e70a75925b8dcaea0838b836e (diff) |
Clean up whitespace in primary Python / HTML files
Clean up the whitespace in the primary Python / HTML files in
order to make it easier to apply changes going forward.
Diffstat (limited to 'pgweb/profserv/models.py')
-rw-r--r-- | pgweb/profserv/models.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/pgweb/profserv/models.py b/pgweb/profserv/models.py index fef5e49d..076a1d98 100644 --- a/pgweb/profserv/models.py +++ b/pgweb/profserv/models.py @@ -27,17 +27,16 @@ class ProfessionalService(models.Model): provides_support = models.BooleanField(null=False, default=False) provides_hosting = models.BooleanField(null=False, default=False) interfaces = models.CharField(max_length=512, null=True, blank=True, verbose_name="Interfaces (for hosting)") - + purge_urls = ('/support/professional_', ) - + send_notification = True - + def verify_submitter(self, user): return (len(self.org.managers.filter(pk=user.pk)) == 1) def __unicode__(self): return self.org.name - + class Meta: ordering = ('org__name',) - |