| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years, 3 months |
| seen | yesterday | |
| stats | profile views | 95 |
|
Jun 16 |
answered | How to exclude images from the facebook like button |
|
Jun 8 |
accepted | Sorting through request.GET in Django |
|
Jun 7 |
comment |
Sorting through request.GET in Django What do you mean by copying request.GET and using urlencode? I've checked the docs....no help there. |
|
Jun 7 |
comment |
Sorting through request.GET in Django What I'm saying is that /?sort=pub_date works but adding /?page=2 to the end of it just switches it back to the default. How would I change that? |
|
Jun 7 |
comment |
Sorting through request.GET in Django I did add ?sort=... to my template as links. Adding /?sort=pub_date/?page=2 isn't working either... I'd rather not add a new application for something like this. |
|
Jun 7 |
comment |
Sorting through request.GET in Django I can't believe how simple this is. Thank you! What about the pagination though? If I sort by pub_date and click on the next page, it goes back to the default ordering. |
|
Jun 7 |
asked | Sorting through request.GET in Django |
|
Jun 2 |
accepted | Sorting the latest added in Django |
|
Jun 2 |
answered | Sorting the latest added in Django |
|
May 24 |
comment |
Sorting the latest added in Django Well, I don't think this should affect the ordering either way because another model I have is a Datefield and it sorts correctly. |
|
May 24 |
comment |
Sorting the latest added in Django Another weird thing...I checked my PostgreSQL tables and they are showing up in order there... |
|
May 24 |
comment |
Sorting the latest added in Django Here's what I get: [datetime.date(2011, 5, 23), datetime.date(2011, 5, 23), datetime.date(2011, 5, 23), datetime.date(2011, 5, 23), datetime.date(2011, 5, 23), datetime.date(2011, 5, 23), datetime.date(2011, 5, 23), datetime.date(2011, 5, 23)] I really have no idea what is going on. Actually, I've evoking Python queries and it's showing different entries every time when I sort by date_added. Is it because the date_added are all the same? This is a DateTime field too and not just a Date field. |
|
May 21 |
asked | Sorting the latest added in Django |
|
May 18 |
comment |
Getting next and previous objects in Django I'm using the get_absolute_url attribute...definitely not the issue_id because I don't sequentially add issues all the time, and that would impractical. |
|
May 16 |
accepted | Getting next and previous objects in Django |
|
May 16 |
comment |
Getting next and previous objects in Django This works...and so simple. Thanks! |
|
May 16 |
accepted | Paginate Class-based View in Django |
|
May 16 |
asked | Getting next and previous objects in Django |
|
May 16 |
comment |
Paginate Class-based View in Django This works, but how do I pass it through the template now? For example: Page {{ issue.number }} of {{ issue.paginator.num_pages }}. {% if issue.has_previous %} « <a href="?page={{issue.previous_page_number }}">Previous</a> {% endif %} {% if issues.has_next %}| <a href="?page={{ issue.next_page_number }}">Next</a> » {% endif %} doesn't work.. |
|
May 16 |
asked | Paginate Class-based View in Django |