I have added two classes (Building and Room) to models.py. But they are
not appearing on the app I have deployed. How do I go ahead with this?
I am not sure if this the right way. If I do include Building and Room in
admin.py an error occurs. I am not sure of the right way of doing this.
Can you please suggest me on this please. Thank you.
admin.py
from django.contrib import admin
from booknowapp.models import Customer, Building, Room
# Register your models here.
admin.site.register(Customer, Building, Room)
I get this error
TypeError at /
register() takes at most 3 arguments (4 given)
--
Ticket URL: <https://code.djangoproject.com/ticket/22365>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* needs_better_patch: => 0
* needs_tests: => 0
* needs_docs: => 0
Comment:
Please see TicketClosingReasons/UseSupportChannels, thank you!
--
Ticket URL: <https://code.djangoproject.com/ticket/22365#comment:1>
* status: new => closed
* resolution: => invalid
--
Ticket URL: <https://code.djangoproject.com/ticket/22365#comment:2>
Comment (by anonymous):
Do so:
admin.py
from django.contrib import admin
from booknowapp.models import Customer, Building, Room
# Register your models here.
admin.site.register(Customer)
admin.site.register(Building)
admin.site.register(Room)
--
Ticket URL: <https://code.djangoproject.com/ticket/22365#comment:3>