Source code for posts.forms

# posts/forms.py

from django import forms
from .models import Post, Comment


# This allow to upload an image and write captions
[docs] class PostForm (forms.ModelForm): """ Class for holding the forms of sending post. """
[docs] class Meta: model = Post fields = ['image', 'caption']
[docs] class CommentForm(forms.ModelForm): """ Class for holing the forms to write comment to a post. """
[docs] class Meta: model = Comment fields = ['text',]