Skip to content
Snippets Groups Projects
Commit 4f5165ed authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Remove *_url fields from Host model

parent 77f16e10
No related branches found
No related tags found
No related merge requests found
...@@ -132,13 +132,6 @@ class Host(models.Model): ...@@ -132,13 +132,6 @@ class Host(models.Model):
email = models.EmailField(_("E-Mail"), blank=True) email = models.EmailField(_("E-Mail"), blank=True)
website = models.URLField(_("Website"), blank=True) website = models.URLField(_("Website"), blank=True)
biography = models.TextField(_("Biography"), blank=True, null=True) biography = models.TextField(_("Biography"), blank=True, null=True)
googleplus_url = models.URLField(_("Google+ URL"), blank=True)
facebook_url = models.URLField(_("Facebook URL"), blank=True)
twitter_url = models.URLField(_("Twitter URL"), blank=True)
linkedin_url = models.URLField(_("LinkedIn URL"), blank=True)
youtube_url = models.URLField(_("Youtube URL"), blank=True)
dorftv_url = models.URLField(_("DorfTV URL"), blank=True)
cba_url = models.URLField(_("CBA URL"), blank=True)
ppoi = PPOIField('Image PPOI') ppoi = PPOIField('Image PPOI')
height = models.PositiveIntegerField('Image Height', blank=True, null=True, editable=False) height = models.PositiveIntegerField('Image Height', blank=True, null=True, editable=False)
width = models.PositiveIntegerField('Image Width', blank=True, null=True, editable=False) width = models.PositiveIntegerField('Image Width', blank=True, null=True, editable=False)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment