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.