I received a list generated from the backend that looks like this:
<ul>
{% for item in items %}
<li>{{item }}</li>
{% endfor %}
</ul>
My goal is to display only the first two items and collapse the rest, possibly with a 'see all' link that reveals the remaining items when clicked. Is this achievable?