Commit d8729a90 authored by Nicolas Reichert's avatar Nicolas Reichert

Added admin features to the announcements page

parent d154e782
from django.contrib import admin
from .models import Announcement
# Register your models here.
class AnnouncementAdmin(admin.ModelAdmin):
model = Announcement
admin.site.register(Announcement, AnnouncementAdmin)
\ No newline at end of file
# Generated by Django 3.2.12 on 2022-03-21 13:37
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Announcement',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('announcement_title', models.CharField(max_length=50)),
('announcement_body', models.CharField(max_length=500)),
('pub_date', models.DateTimeField(auto_now=True, verbose_name='Date Published')),
],
),
]
from msilib.schema import Class
from django.db import models
# Create your models here.
class Announcement(models.Model):
announcement_title = models.CharField(max_length=50)
announcement_body = models.CharField(max_length=500)
pub_date = models.DateTimeField("Date Published", auto_now=True)
\ No newline at end of file
No preview for this file type
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