from django import forms from leftists.models import ShortLink class LinkForm(forms.ModelForm): class Meta: model = ShortLink fields = ["domain", "location", "to"]