mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
10 lines
199 B
Python
10 lines
199 B
Python
from django import forms
|
|
|
|
from .models import License
|
|
|
|
|
|
class LicenseForm(forms.ModelForm):
|
|
class Meta:
|
|
model = License
|
|
fields = ["short_name", "full_name", "url", "description"]
|