#202 Add django admin.py and register models
Merged 5 years ago by jflory7. Opened 5 years ago by anasustic.
fedora-commops/ anasustic/fedora-happiness-packets djangoadmin  into  master

@@ -0,0 +1,5 @@ 

+ from django.contrib import admin

+ from happinesspackets.messaging.models import Message, BlacklistedEmail

+ 

+ admin.site.register(Message)

+ admin.site.register(BlacklistedEmail)

This change adds admin.py and registers Message and BlacklistedEmail models in admin.py.
It addresses the first point of #157.
Django Admin Site is easily accessible to modify or enter models.

Metadata Update from @jflory7:
- Pull-request tagged with: new change, type - backend, type - summer coding
- Request assigned

5 years ago

@anasustic Great, this looks like a good start for #157. :thumbsup: Thanks for sticking through with it! Merging. :tada:

Pull-Request has been merged by jflory7

5 years ago

Great thanks for your patience with this PR @jflory7 :raised_hands:
I closed the the other PR #194.