mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 03:17:07 +00:00
15 lines
247 B
Python
15 lines
247 B
Python
from django import forms
|
|
|
|
from . import models
|
|
|
|
|
|
class ActivityForm(forms.ModelForm):
|
|
class Meta:
|
|
model = models.Activity
|
|
fields = [
|
|
'name',
|
|
'series',
|
|
'type',
|
|
'medium',
|
|
]
|