moneropro/articles/forms.py

8 lines
177 B
Python
Raw Normal View History

2022-07-19 17:01:52 +00:00
from articles.models import *
from django import forms
class ArticleForm(forms.ModelForm):
class Meta:
model = Article
fields = ['title', 'subtitle', 'thumbnail', 'text']