Jason
Jason

Reputation: 165

Should I use the Django admin for user submitted content?

I'm creating a site that will allow users to authenticate via Facebook and create content.

Should I use the Django admin interface for content creation or would it be smarter to create my own interface. If I should roll my own are there any good tutorials about this?

Upvotes: 0

Views: 227

Answers (2)

Burhan Khalid
Burhan Khalid

Reputation: 174624

As a general rule, the django admin is best for validating your models during development and testing; and should not be used as a front end user interface.

Since each site/application has their own unique requirements, it is difficult to recommend a tutorial. Once you are familiar with django, you will find the following libraries helpful:

For customizing the existing admin application:

Upvotes: 1

Siva Arunachalam
Siva Arunachalam

Reputation: 7740

You can use admin login page and with custom URL redirection. Here is the working example for facebook authentication. https://github.com/sivaa/django-social-auth-facebook

Upvotes: 1

Related Questions