redesign partner detail page
This commit is contained in:
parent
eec1cfcc15
commit
6320ea3855
3 changed files with 214 additions and 60 deletions
|
@ -146,10 +146,18 @@ class ConsultingPartner(models.Model):
|
|||
blank=True,
|
||||
)
|
||||
website = models.URLField(blank=True)
|
||||
services = models.ManyToManyField(Service, related_name="consulting_partners")
|
||||
linkedin = models.URLField(blank=True)
|
||||
phone = models.CharField(max_length=25, blank=True, null=True)
|
||||
email = models.EmailField(max_length=254, blank=True, null=True)
|
||||
address = models.TextField(max_length=250, blank=True, null=True)
|
||||
|
||||
services = models.ManyToManyField(
|
||||
Service, related_name="consulting_partners", blank=True
|
||||
)
|
||||
cloud_providers = models.ManyToManyField(
|
||||
CloudProvider, related_name="consulting_partners", blank=True
|
||||
)
|
||||
|
||||
is_featured = models.BooleanField(default=False)
|
||||
created_at = models.DateTimeField(auto_now_add=True)
|
||||
updated_at = models.DateTimeField(auto_now=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue