vote up 0 vote down star

I'm currently moving from my development server to an Apache web production server.

I've tried doing the following just by copying it over and I can login to the admin panel but it doesn't show up.

My admin.py in my app looks like this:

    import models
    from django.contrib import admin

    admin.site.register(models.Organization)

And here is my models.py

from django.db import models

class Organization(models.Model):
    name = models.CharField(max_length=100)
    website = models.URLField()
    azon_code = models.CharField(max_length=50)
    gooe_code = models.CharField(max_length=50)
    cj_code = models.CharField(max_length=50)

I've resyned the database and restarted apache as well thinking that might do something.

flag

You haven't forgotten to add it to your settings.py, have you? – lemonad Nov 7 at 20:19
Yes, I did. Thank you so much! – Noah Clark Nov 7 at 20:39
Haha, I should have added that as an answer instead of a comment! :) – lemonad Nov 7 at 22:16

1 Answer

vote up 1 vote down check

Aren't you supposed to import like:

from mysite.myapp.models import Organization
admin.site.register(Organization)
link|flag
I tried that and it still didn't work for me. Let me try that again! – Noah Clark Nov 7 at 20:25
I just switched over to your model and still no go. I think your model is a better approuch anyway. It looks a lot cleaner and it is how I've seen it on other sites. Thanks for the attempt though! – Noah Clark Nov 7 at 20:28
as @lemonad suggested, you did add it to your settings.py? – Apikot Nov 7 at 20:33
Lemonad is a pimp! That fixed it. – Noah Clark Nov 7 at 20:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.