mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
12 lines
229 B
Python
12 lines
229 B
Python
from django import forms
|
|
|
|
from .models import HostingPlatform
|
|
|
|
|
|
class HostingPlatformForm(forms.ModelForm):
|
|
url = forms.URLField()
|
|
|
|
class Meta:
|
|
model = HostingPlatform
|
|
fields = ["hosting_platform", "url"]
|