{% extends "base.html" %} {% block title %}Search Results - Media Inventory App{% endblock %} {% block content %}

Search Results

🔍 New Search
Query: "{{ query }}" Media Type: {% if media_type == 'book' %}📚 Book{% endif %} {% if media_type == 'vinyl' %}🎵 Vinyl Record{% endif %} {% if media_type == 'cd' %}💿 CD{% endif %} {% if media_type == 'cassette' %}📼 Cassette{% endif %}
{% if results %}
{% for item in results %}
{% if item.cover_url %} Cover {% else %}
No Image
{% endif %}
{{ item.title }}
{% if media_type == 'book' %}

Author: {{ item.author }}
Year: {{ item.year }}
{% if item.isbn %} ISBN: {{ item.isbn }}
{% endif %}

{% else %}

Artist: {{ item.artist }}
Year: {{ item.year }}
Label: {{ item.label }}
Format: {{ item.format }}

{% endif %}
{% if media_type == 'book' and item.openlibrary_url %} 📚 View on OpenLibrary {% elif media_type != 'book' and item.discogs_url %} 🎵 View on Discogs {% endif %}
{% endfor %}
{% else %}

No results found

Try adjusting your search terms or selecting a different media type.

🔍 Try Another Search
{% endif %}
{% endblock %}