mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 17:42:08 +00:00
9 lines
177 B
Python
9 lines
177 B
Python
from django.forms import ModelForm
|
|
from .models import Library, Category
|
|
|
|
|
|
class LibraryForm(ModelForm):
|
|
class Meta:
|
|
model = Library
|
|
fields = ["categories"]
|