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,
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
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
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
4 matches
Mail list logo