Re: How to create a django model for a resume/CV app

2016-11-21 Thread ludovic coues
I would be tempted to hook the admin site directly into the website. Django's admin let you specify each form template so the look isn't an issue. Putting a specific view from the admin at a specific url is a bit more complex. Should be doable but maybe not easily or cleanly. Short of doing that,

Re: How to create a django model for a resume/CV app

2016-11-20 Thread 'ron' via Django users
Thanks! I know it's been covered in the official django poll tutorial. But how do I let users to do that without django admin? I probably will have an URL like: example.com/cv/create and only logged in users will be able to create their cv. I am not sure how to set up the view so that users can

Re: How to create a django model for a resume/CV app

2016-11-06 Thread ludovic coues
If you are using the default django admin, you can use inline model admins [1]. The django's tutorial covert this point with polls' questions having many possible choice in part 7 [2] [1] https://docs.djangoproject.com/en/1.10/ref/contrib/admin/#inlinemodeladmin-objects [2] https://docs.djangopr

How to create a django model for a resume/CV app

2016-11-06 Thread ronronald97 via Django users
Hi, I am rather new to django and not sure how to set up the relationship for all the fields of a resume app. Let's say each user can have 1 or more resume. In each Resume, there is a introduction/about, 1 or more education entries and 1 or more previous job entries. Is this correct? class Re