2
  • I want a "settings" page where the user can submit his hometown/biography/email settings and upload his avatar
  • We will be building a mobile app that uses HTTP Rest API to update the user's profile, so we must be able to do manual override of these apps.

That's it! I don't want anything else. I don't care about the friending or blogging or anything.

Which Django App should I use? Currently, I am using Pinax's basic_project.

TIMEX
  • 259,804
  • 351
  • 777
  • 1,080

3 Answers3

1

django-profile may be of use in this case.

Alex Kuhl
  • 1,814
  • 1
  • 13
  • 19
1

I actually am approaching the same problem.

I find overriding the pinax profile app is enough. The profile section is what allows the upload of avatars and your info and allows you to also edit it.

I still haven't found a good way to override the native apps yet. Right now I am copying over the app.

Thanks, Ray

NycCompSci
  • 3,137
  • 2
  • 15
  • 16
0

I generally like starting with the basic or account, then build up to what I need. I prefer this method to starting with complete/social and stripping out what I don't need. Just fyi.

kevin_82
  • 317
  • 3
  • 10