0
votes
2answers
16 views

The view .views.create didn't return an HttpResponse object

i am new to this language and trying to create a form from the 2 models that i have creates models.py from locpick.field import LocationField from django.db import models from django.db.models ...
0
votes
0answers
28 views

New django project: Cannot import name connections

I'm having a problem with Django. If you could help me, I'd very much appreciate it. So, I've found lots of people with a similar problem, but none of the "solutions" work for me. I'm learning how to ...
0
votes
0answers
8 views

Class Based Views,listview, and django-blog-zinnia search

Using Django listviews and the blogging app zinnia can someone give me an example of how to implement or , point me towards a understanding so i can implement zinnia search and have a listview class ...
0
votes
0answers
21 views

jQuery Full Calendar, Displays Incorrect Dates on Calendar

I am fetching events via JSON but Full Calendar is rendering them on the wrong dates. JS: events: function(start, end) { start = start.getFullYear() + '-' + (start.getMonth() + 1) + '-' + ...
0
votes
0answers
26 views

How to use methods of classes that require initial training on datasets within a django app

I have a django app that needs to access methods from a class that was previously trained on some data. To put things into context, the django app needs to access a classifier for classifying text. ...
0
votes
1answer
30 views

Django - how to not loose verbose_name and other attributes of Field when overriding its form in ModelForm?

Given: #models.py from django.db import models class MyModel(models.Model): myfield = models.IntegerField('Detailed description') #forms.py from django import forms from models import MyModel ...
1
vote
2answers
29 views

Only validate admin form if condition is true

I have a question model and a choices model. A choice can be correct or not. class Choice(models.Model): question = models.ForeignKey('Question', related_name='choices') choice = ...
0
votes
1answer
16 views

NoMigrations error in Django

I am building an app called 'competencies'. I made changes to models, migrated the app locally, and everything worked. This is my eighth migration on the app. I have deployed the app on heroku, so I ...
2
votes
3answers
78 views

How to do an efficient loop with comparisons and insertions in other lists

I'm working on a web application (Python/Django) which handle a big database and I need to optimize this loop in order to obtain a better execution time. I have a list of entries, each entry has a ...
0
votes
2answers
38 views

HTTP Response problems with Django form

at the moment, I try to make a search form for a small database. This is a part of my models.py file: from django.db import models from django import forms #... class searchForm(forms.Form): ...
0
votes
1answer
27 views

CSS not applied

Im having some issues in applying my CSS. (I'm using Django 1.5) Here is my project structure: project - app - project - static - css - style.css - template - ...
0
votes
1answer
17 views

How to create a preview of the documents and the ability to edit their content?

I store in database document files (.TXT). How to create a preview of the documents and the ability to edit their content?(just like in a text editor) Does anyone know the general algorithm or ...
0
votes
2answers
19 views

Error while runing the django project in web browser

I am getting this error when i run the django file in web browser. I created a django project named FirstBlog and started an app named blog. i also changed the view file, model file and url file and ...
0
votes
1answer
36 views

How to deal with the naming convention gap between the frontend (camelCase) and the backend (lower_case_with_underscores)?

The current project that I am working on uses angularjs/javascript for its frontend and django/python for its backend. The combination of the frameworks/languages that I chose works out pretty well, ...
0
votes
1answer
19 views

django-multiuploader: failed to find libmagic

I installed django-multiuploader and follow the instructions. Got error message in browser: ImportError at /competition-big/big1/upload failed to find libmagic. Check your installation Here is ...
0
votes
0answers
11 views

How to add username and e-mail option for password reset in Django password reset?

I am using Django in-build password to allow users to reset the password. My password_reset_form.html looks like this: {% block title %}Reset Password{% endblock %} {% block content %} ...
0
votes
1answer
27 views

Unsure how/where to manipulate Django objects

Okay so I am very new to Django and relatively new to Python as well. In the website I am building, I am using some middleware that someone else made to keep track of "online" users using the cache to ...
0
votes
1answer
31 views

Admin site of my Django project doesn't work

I'm new to Django and I'm following the tutorial of activating the admin site. I did the following configuration from the tutorial: Firstly, I uncommented the line django.contrib.admin in the apps ...
-3
votes
0answers
23 views

How can i store big JSON dumps in python django without database [closed]

My Web pages do something like this Get the Query parameters from Form Grab the Records from DB which match the paramerers.\ Do some very heavy computation on records which then converts 100 records ...
0
votes
1answer
20 views

Template variable translation

I am having issues in having a value coming from a model translated. Here's what I have: model.py: TICKET_STATUSES = ( ('NEW', _("New")), ('OPEN', _("Open")), ('PENDING', _("Pending")), ...
0
votes
0answers
18 views

mongoengine OperationError LEFT_SUBFIELD only supports Object

I'm writing a python script to populate a mongodb database, my models look like the following: from mongoengine import * from mongoengine.django.auth import User class TrackGroup (Document): ...
0
votes
0answers
30 views

Testing Django No Such Table

I'm testing Django running python manage.py runserver --noreload --settings=myapp.test_settings Now the test_settings file has a django.db.backends.sqlite3 DB engine, however, when trying to save a ...
0
votes
1answer
21 views

“CeleryTask matching query does not exist” when running Django tests

I'm trying to test some part of a Django project. The test is: class SearchTest(TestCase): def test_object_added(self): SomeSingleton().add_one_object_to_model() tmp = ...
0
votes
0answers
33 views

500 errors just after touching wsgi (Apache mod_wsgi and Django)

To reload my source code after an edit i touch the wsgi in production. This seems to cause a few 500 errors return when i reload the site, just after the touch. Everything then goes well. I use ...
0
votes
0answers
32 views

manage.py runserver gives recursion error [duplicate]

I'm trying the Django tutorial; when asked to run manage.py runserver I get the following 2 lines: File "C:\python27\lib\functools.py", '__lt__': [('__gt__', lambda self, other: other < self), ...
2
votes
0answers
16 views

Django's cascade delete is executing the DELETE SQL twice

I've got an odd situation here, any idea why the delete SQL for the myapp_entry_tag table is being performed twice? >>> from myapp.models import Tag >>> from django.db import ...
0
votes
0answers
23 views

Empty sessions in Django

I'm unable to write session keys and values to the session file using Django 1.5, Python 2.7 (64 bits), and Windows OS. I set the SESSION_ENGINE variable as django.contrib.sessions.backends.file, and ...
0
votes
1answer
17 views

send API requests from different IP addresses on VPS

I'm currently using 1 IP address and making requests for data through an API that requires a unique IP and token. If I obtain more IP addresses via a different VPS provider and register them with ...
0
votes
0answers
13 views

Django Auth LDAP - Direct Bind using sAMAccountName

There are two ways to authenticate a user using Django Auth LDAP Search/Bind and Direct Bind. The first one involves connecting to the LDAP server either anonymously or with a fixed account and ...
0
votes
1answer
7 views

How to skip a scenario in Lettuce?

I'm using Lettuce to do BDD testing on my Django website. I'm also using CircleCI do some continuous integration. I have a scenario that fails on CircleCI every time, so I'd like to tell CircleCI to ...
0
votes
2answers
19 views

Viewing a django-cms page via the slug

How do you view a published django-cms page using a path that incorporates the slug? I installed django-cms without error, and I can view the default cms homepage just fine. I created and published a ...
0
votes
2answers
32 views

Confused about Django file upload locations

When working with manual file uploads, do I need to place the file in the final location before saving it to the model? Or, does the model move the file at some point? If I do need to place it myself, ...
1
vote
1answer
29 views

How to add context to the activation_email.txt in Django

I want to customize registration/activation_email.txt template by adding some variables that are already available to all other pages (for example: my_var). They are available to the other templates ...
0
votes
2answers
33 views

How To Access Many to Many Attribute in Django

I am very new to web development and I have created a sample project using Django. So far I have a Django powered page that displays the contents of one of my database's model objects which is called ...
0
votes
3answers
49 views

is there a package for making a simple query API?

I have simple, 1 table, data source that I want to be able to query through an API. I want to be able to query on any one of the columns. Ideally, I could query for multiple values per column. One ...
1
vote
1answer
29 views

Django Unit testing, unknown column error

I'm a Django beginner and am getting acquainted to using it, and I'm also a big believer in unit testing. Given a sample database table contracts with the fields parent_id int contract_num varchar ...
0
votes
1answer
20 views

Django - Filter URL in texts

I would like to know if someone here could help me out finding a way to "filter" URLs inside block of texts, comments for example. I wish to be able to "Block" the submitting of such comments on my ...
0
votes
1answer
37 views

Subclassing LoginForm

I am trying to subclass the loginform to add an extra field per login but cannot get it to display. I am using mezzanine for the project. Here is what I have for my forms.py: from ...
0
votes
2answers
38 views

error while linking mysql and django

i am using aptana for creating a website using django. I have installed mysql but not able to link the database when i run this command *Python2.7 manage.py runserver* i get a message that Python2.7 ...
0
votes
1answer
37 views

logging standard python exceptions with django

In one of my views, I handle a general python exception. This exception does not crash the site, or result in a 500. I would like to log this exception with django so that I can inspect it. What is ...
0
votes
1answer
23 views

Can't make nestednamespaces what are the best practices for django urls

I can't create nested namespaces like they are presented in https://docs.djangoproject.com/en/1.4/topics/http/urls/ every time I go more than 1 level I lose all the other namespaces has anyone been ...
0
votes
1answer
39 views

How do I publish a django web app to Google App Engine from Visual Studio 2012

I am trying to set up a django application in Visual Studio 2012 that will publish to Google App Engine. I have a simple hello World Application set up in Visual Studio using pytools that I can run ...
0
votes
1answer
16 views

django blog zinnia - NoReverseMatch at /blog/

My current project uses django blog zinnia and when I open /blog it gives the following error: Reverse for 'zinnia_entry_add' with arguments '()' and keyword arguments '{}' not found. I tried ...
0
votes
0answers
31 views

How to monkey patch south handled models from plugin?

I'm making a django site with plugins. Each plugin is a simple django app depending on a main one (or even other plugins). While dependency between applications/plugins are clear to me, it should be ...
0
votes
0answers
32 views

Disadvantages of creating a Django based trading front-end? [closed]

After struggling with MQL4/MetaTrader for some time, I'm thinking of creating my own FX "trading platform" in python. Since I work with very basic indicators (Moving Average, MACD etc.), I could use ...
-1
votes
0answers
25 views

How to create new instance for existing project?

I am new to google app engine.I am try to deploy the django CRUD application in google app engine.Is it necessary to create an instance for django CRUD application ?. I have enabled the billing for ...
0
votes
1answer
23 views

stale content types while syncdb in Django

While I'm trying to syncdb for my django project, I'm seeing following complains: The following content types are stale and need to be deleted: reviews | Any objects related to these content types ...
0
votes
1answer
41 views

How to upload the django-1.5 application in google app engine?

I have uploaded the my sample CRUD application in google app engine. But it riased error as shown below, Traceback (most recent call last): File ...
0
votes
2answers
31 views

How Do You Pass New URLs to a Scrapy Crawler

I would like to keep a scrapy crawler constantly running inside a celery task worker probably using something like this. Or as suggested in the docs The idea would be to use the crawler for querying ...
0
votes
2answers
59 views

uWSGI error: "Error opening file for reading: Permission denied'

I am experiencing the exact same error described here: uWSGI Server log…permission denied to read file...which file? uWSGI keeps throwing me "Error opening file for reading: Permission denied" in ...

1 2 3 4 5 418