Added linktype to externallink class and made it non-abstract.

This commit is contained in:
Marcus Scholz 2021-10-02 02:40:48 +02:00
parent a7a3ddfe63
commit 5f9ef08e3b
1 changed files with 9 additions and 3 deletions

View File

@ -4,9 +4,9 @@ from django.utils.translation import ugettext_lazy as _
from lostplaces.models.place import PlaceAsset
class ExternalLink(PlaceAsset):
class Meta:
abstract = True
abstract = False
url = models.URLField(
max_length=200,
@ -16,6 +16,12 @@ class ExternalLink(PlaceAsset):
max_length=100,
verbose_name=_('link text')
)
linktype = models.CharField(
max_length=20,
verbose_name=_('link type'),
blank=True,
null=True
)
class PhotoAlbum(ExternalLink):
pass
pass