Created a model named Post for Forum

parent 6466fb1e
from django.contrib import admin
# Register your models here.
from .models import Post
class PostAdmin(admin.ModelAdmin):
model = Post
search_fields = ('post_title',)
list_display = ('post_title', 'pub_date',)
list_filter = ('post_title', 'pub_date',)
admin.site.register(Post, PostAdmin)
\ No newline at end of file
# Generated by Django 3.2.12 on 2022-03-24 13:04
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Post',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('post_title', models.CharField(max_length=50)),
('post_body', models.CharField(max_length=500)),
('pub_date', models.DateTimeField(verbose_name='date published')),
],
),
]
from django.db import models
# Create your models here.
class Post(models.Model):
post_title = models.CharField(max_length=50)
post_body = models.CharField(max_length=500)
pub_date = models.DateTimeField("date published")
def __str__(self):
return self.post_title
\ No newline at end of file
......@@ -38,6 +38,7 @@ ALLOWED_HOSTS = []
INSTALLED_APPS = [
'announcements.apps.AnnouncementsConfig',
'assignments.apps.AssignmentsConfig',
'forum.apps.ForumConfig',
'homepage.apps.HomepageConfig',
'django.contrib.admin',
'django.contrib.auth',
......
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