Commit e6b01d65 authored by Alia Lawraine Olay's avatar Alia Lawraine Olay

Created Announcement model and added admin view for the announcement board

parent 1f5a6f14
from django.contrib import admin
from .models import Announcement
# Register your models here.
class AnnouncementAdmin(admin.ModelAdmin):
model = Announcement
list_display = ('announcement_title', 'announcement_body', 'pub_date')
admin.site.register(Announcement, AnnouncementAdmin)
\ No newline at end of file
from django.db import models
# Create your models here.
class Announcement(models.Model):
announcement_title = models.CharField(max_length=150)
announcement_body = models.TextField()
pub_date = models.DateField(auto_now=True)
def __str__(self):
return '"{}" published {}'.format(self.announcement_title, self.pub_date)
\ 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