mirror of
https://github.com/pinry/pinry.git
synced 2025-11-14 17:05:50 +01:00
12 lines
188 B
Python
12 lines
188 B
Python
from django import forms
|
|
|
|
from .models import Pin
|
|
|
|
|
|
class PinForm(forms.ModelForm):
|
|
url = forms.CharField(label='URL')
|
|
|
|
class Meta:
|
|
model = Pin
|
|
exclude = ['image']
|