I want to know how to display images separated by albums onto a page in Django. So far, I've learned how to do so with the line
<img src="{% static "images/pytho...@2x.png" %}">in my html file.
What I want to do is have a few album thumbnails out and upon click, all the images from the album should be displayed. I believe I would do this with an AJAX request. I am probably going to categorized these photos with tags and put names one them and other characteristics.
I am new to Django so I am not sure where and how to start with this app of mine. Could someone lend me a hand and propose a method ot guideline on how to do so? Much appreciated!