1
vote
2answers
31 views
Django Admin app: building a dynamic list of admin actions
I am trying to dynamically build a list of admin actions using the get_actions() method on a ModelAdmin. Each action relates to a particular instance of another model, and as new instances may be …
0
votes
1answer
63 views
How to properly remove a specific ManyToMany relationship?
I have a ManyToMany relationship with one of my Models. On deleting a child, I want to remove the relationship but leave the record as it might be being used by other objects. On calling the delete …
2
votes
1answer
16 views
Running Django Tests with a Precommit Hook
Hello,
I would like to run all my django tests using mercurial's precommit hook. Whenever a test fails the commit will be aborted.
The goal is to block build-breaking commits as often as possible.
…
1
vote
5answers
74 views
How to implement time event scheduler in python?
In python how to implement a thread which runs in the background (may be when the module loads) and calls the function every minute Monday to Friday 10 AM to 3 PM. For example the function should be …
3
votes
5answers
83 views
Django template and the locals trick
The django books gives the local trick in order to avoid to type a long list of parameters as context dictionnary http://www.djangobook.com/en/2.0/chapter04/
It recommends this to lazy programmers …
0
votes
1answer
16 views
Validate that atleast one modelfield has value in Django admin
Given the following model, how do I require that atleast one of the two fields has been given a value?
class ZipUpload(models.Model):
zip_file = models.FileField(upload_to="/tmp", blank=True,
…
0
votes
1answer
23 views
context within a query filter?
I have a very basic contact model. The model has the following fields:
class Entry(models.Model):
name = models.CharField(max_length=64, unique=False)
organization = …
0
votes
1answer
24 views
Solr Facet Range with Integers
My index contains peoples information, name, age, phone email etc.
I am faceting on Age. I group ages kinda like Date Range functionality.
My ranges are:
0 to 10
11 to 20
21 to 30
…
0
votes
1answer
34 views
django urlencode filter
I have a problem with encoding urls using build-in django urlencode filter. When I use it on default django server everything is fine. But on apache2 it doesn`t work, ie. i have a tag called C#. On …
1
vote
4answers
49 views
Django Template Slice - Reversing Order
Thanks to a very helpful hint from another question I learned I can limit the amount of values in a list by slicing it in the template as such:
{% for comment in thread.comment_set.all|slice:":3" %}
…
0
votes
2answers
21 views
Serializing resultset returned from mysqldb in python
Can anyone please help me in serializing resultset returned using mysqldb in python?
I get typeerror: datetime.date(2007, 11, 15) is not JSON serializable
What is the best way to do serialize into …
1
vote
3answers
38 views
Django-Tagging - count and ordering top “tags” (Is there a cleaner solution to mine?)
I'm using Django-Tagging, and I don't exactly need a cloud, I just want a limited list of the most popular tags used in my blog entries.
Using the following:
[(tag.name, int(tag.count)) for tag in …
0
votes
2answers
82 views
Why does Django say I haven’t set DATABASE_ENGINE yet?
I have a Django project, and I'm somewhat of a newbie in it. I have the following PyUnit test trying to save an object into a PostgreSQL database:
import unittest
from foo.models import ObjectType
…
0
votes
3answers
44 views
csv2json.py error
I am trying to run the script csv2json.py in the Command Prompt, but I get this error:
C:\Users\A\Documents\PROJECTS\Django\sw2>csv2json.py csvtest1.csv wkw1.Lawyer
Converting …
0
votes
2answers
39 views
Django loaddata ValidationError
This thread got too confusing (for me) so I am asking the question again. I could not make the csv2json.py script mentioned in the original question work. I am just trying to find a way to import data …
