Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Right now I have

set1 = Cashtexts.objects.filter(cashdate__range=[datetime.date.today()-datetime.timedelta(days=day1),datetime.date.today()-datetime.timedelta(days=day7)]).order_by('-cashtime')

for the range on my filter (filter submission that were enter within the last week. day1 = 0 and day 7 =6.) However this is my first time trying to get __range to work on a filter and I'm unsure of whether or not I'm using it correctly.

I just added items to the database today so there are items in there that just aren't showing up. the template has

{% if set1 %}
<form method="post" action="">{% csrf_token %}
<input type="hidden" name="{{name}}" value="CashTextsDeleteForm">
<table class="deletetable">
<tr>
{% for field in set1 %}
<tr>
<td><a href="{{url}}{{field}}">{{field}}</a></td><td><input type="checkbox" name="{{ field }}" value="{{ field }}"> </td>
    </tr>
{% endfor %}
</tr>
</table>

<div class="button">
<input type="submit" value="Delete"/>
</form>
{% endif %}

I'm ussre if there are things I'm missing or what.

share|improve this question
cashdate is a datetime field and what database are you using? And what does set1.query say? – Willian Apr 20 '12 at 20:17
using postgresql cashdate is a DateField with auto_now=True and set1.query? – city Apr 20 '12 at 20:21
'print set1.query' prints the sqlquery – Willian Apr 20 '12 at 20:23
it printed this SELECT "users_cashtexts"."id", "users_cashtexts"."cashTexts", "users_cashtexts"."cashdate", "users_cashtexts"."cashtime", "users_cashtexts"."username" FROM "users_cashtexts" WHERE "users_cashtexts"."cashdate" BETWEEN 2012-04-20 and 2012-04-14 ORDER BY "users_cashtexts"."cashtime" DESC – city Apr 20 '12 at 20:40
looks like i just had the two date parameters in backwards. everythign works i just had the larger date first which is wrong (larger by meaning more recent) – city Apr 20 '12 at 21:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.