How to create different paths for users to take through the pages in my site?
I have a website where users are directed to go through a sequence of pages to perform a sequence of work tasks (transcribe a paragraph, answer a survey, interact with another user, etc). For short, let’s call these tasks A, B, C, etc. I’m using Django, and each task is currently implemented as a view function (or method), e.g. def A(request)
. Currently, each view function has the next step hardcoded in an HTTP redirect, e.g. HttpResponseRedirect(reverse(B))
.
Is it possible to have a child model with multiple parents in a Django App?
I am creating a quiz back-end. I would like to add a feature where a user can report a question for being irrelevant or not fair.
Do I need a database to implement AJAX functionality for my app?
I am new to the construction and design of a web app so I’d like some advice please (Django is my framework). I’m trying to code up a “how-to” website instructing users the step-by-step process for doing a certain task. I’d like the navigation of the website to be something like this…
Do I need a database to implement AJAX functionality for my app?
I am new to the construction and design of a web app so I’d like some advice please (Django is my framework). I’m trying to code up a “how-to” website instructing users the step-by-step process for doing a certain task. I’d like the navigation of the website to be something like this…
Do I need a database to implement AJAX functionality for my app?
I am new to the construction and design of a web app so I’d like some advice please (Django is my framework). I’m trying to code up a “how-to” website instructing users the step-by-step process for doing a certain task. I’d like the navigation of the website to be something like this…
Do I need a database to implement AJAX functionality for my app?
I am new to the construction and design of a web app so I’d like some advice please (Django is my framework). I’m trying to code up a “how-to” website instructing users the step-by-step process for doing a certain task. I’d like the navigation of the website to be something like this…
Do I need a database to implement AJAX functionality for my app?
I am new to the construction and design of a web app so I’d like some advice please (Django is my framework). I’m trying to code up a “how-to” website instructing users the step-by-step process for doing a certain task. I’d like the navigation of the website to be something like this…
Do I need a database to implement AJAX functionality for my app?
I am new to the construction and design of a web app so I’d like some advice please (Django is my framework). I’m trying to code up a “how-to” website instructing users the step-by-step process for doing a certain task. I’d like the navigation of the website to be something like this…
Do I need a database to implement AJAX functionality for my app?
I am new to the construction and design of a web app so I’d like some advice please (Django is my framework). I’m trying to code up a “how-to” website instructing users the step-by-step process for doing a certain task. I’d like the navigation of the website to be something like this…
Best practices when dealing with lots of empty table columns?
I have a schema that allows for multiple post types in my Django project (kinda like Tumblr). Users can make Posts of different types. One of those types is a photo, which I’ll want the EXIF data for.