mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-21 05:11:09 -05:00
- Implemented park detail page with dynamic content loading for rides and weather. - Created park list page with filters and search functionality. - Developed ride detail page showcasing ride stats, reviews, and similar rides. - Added ride list page with filtering options and dynamic loading. - Introduced search results page with tabs for parks, rides, and users. - Added HTMX tests for global search functionality.
10 lines
442 B
HTML
10 lines
442 B
HTML
<span class="relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full {{ class }}">
|
|
{% if src %}
|
|
<img class="object-cover w-full h-full aspect-square" src="{{ src }}" alt="{{ alt|default:'' }}">
|
|
{% else %}
|
|
<span class="flex items-center justify-center w-full h-full rounded-full bg-muted text-muted-foreground">
|
|
{{ fallback|default:alt|make_list|first|upper }}
|
|
</span>
|
|
{% endif %}
|
|
</span>
|