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