As a newcomer to Django, I am currently developing a website where users can filter objects based on timestamps. While filtering in views.py and reloading the template is straightforward, I am interested in implementing client-side filtering.
One approach could be to load all objects:
{% for obj in all_objects %}
<p>{{obj.time}}</p>
{% endfor %}
and then utilize JavaScript to hide and show objects as needed. I anticipate around 1,000 objects at most.
I came across this resource: where the author recommends using AngularJS over a custom AJAX solution.
Would AngularJS be the optimal choice for integrating with Django, or are there other frameworks that offer a simpler integration process?