Commit 23bde547 authored by Cherish Magpayo's avatar Cherish Magpayo

Create Announcement Model Form to display in adding new announcement page

parent 8ced15c5
from django.forms import ModelForm
from .models import Announcement
class AnnouncementForm(ModelForm):
class Meta:
model = Announcement
fields = ["announcement_title", "announcement_body", "author", "image"]
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment