1
vote
2answers
177 views
using django, how to create method in model to return query data
In the following code, I'm tyring to create the method show_pro that will show all Arguments for the Case that are pro.
I am getting this error:
>>> Case.objects.a …
4
votes
4answers
1k views
how to use a slug in django
I am trying to create a SlugField in Django.
I created this simple model:
from django.db import models
class test(models.Model):
q = models.CharField(max_length=30)
…
0
votes
2answers
60 views
Should I create form objects or generate them from model
I recently found out that I can generate forms from models. I've read the docs and am wondering why someone would opt not to do this in favor creating their own form objects.
…
1
vote
3answers
89 views
where to put method that works on a model
I'm working with Django.
I have a model called Agrument. Arguments have sides and owners. I have a function that returns back the side of the most recent argument of a certain user.
…
0
votes
1answer
381 views
how to do a select max in django
I have a list of objects how can I run a query to give the max value of a field:
I'm using this code:
def get_best_argument(self):
try:
arg = self.argume …
4
votes
5answers
218 views
accurate page view count
What is a good approach to keeping accurate counts of how many times a page has been viewed
I'm using Django. Specifically, I don't want refreshing the page to up the count.
…
0
votes
2answers
148 views
finding object count where a field is unique in django
I have a model that is something like this:
class Input(models.Model):
details = models.CharField(max_length=1000)
user = models.ForeignKey(User)
class Case(Input):
…
0
votes
1answer
86 views
how can I change to way a boolean prints in a django template
I have some django code that prints a BooleanField
it is rendered as True or False, can I change the label to be Agree/Disagree or do I need to write logic for that in the template?
…
0
votes
2answers
64 views
where do functions that don’t display go in django
I have some links on an html page like , , currently I handle them as so
<p> <a href="/cases/{{case.id}}/case_rate/-">rate down</a>
and have a u …
2
votes
3answers
80 views
multiple exclude
is there a way to do a query and exclude a list of things instead of calling exclude multiple times?
…
0
votes
finding object count where a field is unique in django
I am using these method on the Case object:
def users_agree(self):
return self.argument_set.filter(side=True).values('user').distinct()
def users_disagree(self):
…
