0
votes
3answers
56 views
Python stacktrace help
hello,
I have this stack trace error when I try view some data in my pyhton website, could some one clue me up as to what the problem is I am so lost
Environment:
Request Method: GET
Request …
2
votes
1answer
86 views
Does ‘p’ have a special meaning in Django?
Why are p and p8 different in the following code?
The beginning of a view function (in file views.py in a Django app named "proteinSearch" with a model named "Protein" that has a field named …
0
votes
1answer
43 views
Large functionality change based on variables.
I'm in a situation where I've got a project that has a large number of Django views across quite a few different apps. The same codebase and database is being used by a large number of clients. There …
0
votes
0answers
22 views
ImageModel and BaseProfile
Hello,
I want to write an app that registers a userprofile and uploads an image at the same time, I've got my baseprofile registration done, now all I want is to upload a user image using ImageModel …
4
votes
5answers
55 views
About index and primary key in SQL?
It may looks a naive question but I am wondering about the relationship between primary keys and indexes in most common SQL databases.
Is it a standard rule for a SQL database to create automatically …
0
votes
2answers
22 views
Pass session data onto URL
I have some information that is set in the sessions, and I was wondering if it's possible to pass this info onto the URL for the view that uses this session data. I want this to be working in such a …
0
votes
2answers
21 views
DJANGO : Update div with AJAX
Hi there
I am building a chat application. So far I am adding chat messages with jquery $.post() and this works fine.
No I need to retrieve the latest chat message from the table and append the list …
0
votes
1answer
16 views
Django Many To Many Insert Ordering
Hi everyone,
We have been struggling with this for a few days and have done lots of searches on the web.
We are trying to figure out how entries are saved in Django forms for many to many fields.
…
0
votes
0answers
15 views
static site apache and dynamic/member site django
I have a site for static content, accessible to all that runs on apache. As an adjunct to that, there is a members site that runs on django. I haven't had any issue 'sharing' my .css and making both …
0
votes
1answer
34 views
Django for web2py developers
Now that I've gotten relatively familiar with web2py, I'd like to give Django a go.
What are the main differences?
What would be the most efficient way to get started taking into account web2py …
1
vote
2answers
42 views
Django & customising a legacy database
I'm currently working on a project to implement a Django interface to an existing calendar application. The calendar application has MySQL as the backend DB.
In our custom application we would like …
0
votes
1answer
18 views
Django buggy template tag - ‘NoneType’ object has no attribute ‘source’
Wondering what is causing this? Had me stumped for some time, everything checks out in console when running in pieces
as a side note:
the template is using the same object in other places and …
2
votes
4answers
45 views
How to make a “workflow” form
Hi there
For my project I need many "workflow" forms. I explain myself:
The user selects a value in the first field, validates the form and new fields appear depending on the first field value. …
0
votes
1answer
29 views
Django URLs configuration debugging?
What's the best method to debug Django's url configurations? Sometime it just throw out a Unhandled Exception without any hints if there is an error in urls.py
Sometimes it throws out errors like …
0
votes
1answer
16 views
south. migrate entire database
how can i migrate entiry db at one step? south`s startmigration command can work only with single application
