#50 Added (new) link types.

This commit is contained in:
Marcus Scholz 2021-10-02 04:40:37 +02:00
parent 72bfc97fbd
commit e14ed52eeb
1 changed files with 9 additions and 0 deletions

View File

@ -3,6 +3,14 @@ from django.utils.translation import ugettext_lazy as _
from lostplaces.models.place import PlaceAsset
LINK_TYPES = (
('youtube', 'YouTube'),
('vimeo', "Vimeo"),
('flickr', 'Flickr'),
('googlephotos', "Google Photos"),
('photoalbum', "Photo album")
)
class ExternalLink(PlaceAsset):
class Meta:
@ -17,6 +25,7 @@ class ExternalLink(PlaceAsset):
verbose_name=_('link text')
)
linktype = models.CharField(
choices=LINK_TYPES,
max_length=20,
verbose_name=_('link type'),
blank=True,