{% extends "base.html" %} {% load static %} {% block title %} Trademark Search Results {% endblock title %} {% block description %} View the results of your trademark search, including registration numbers, serial numbers, filing dates, owner details, and status labels from the USPTO. {% endblock description %} {% block keywords %} Trademark Search Results, USPTO, Patent and Trademark, Search Trademarks, Trademark Details, Owner Information {% endblock keywords %} {% block og_title %} Trademark Search Results - Detailed Trademark Information {% endblock og_title %} {% block og_description %} Access detailed trademark search results, including registration numbers, serial numbers, filing dates, owner information, and status labels from the USPTO. {% endblock og_description %} {% block content %} {% include "includes/sidenav.html" %}
{% if available %}
Trademark available Image

Available!

Trademark is available for Registration

{% else %}

Search Results {{ count }} results found for "{{ query }}"

New Search
{% for item in items %} {% for owner in item.owners %} {% endfor %} {% endfor %}
Name Registration Info Dates Owner Details Status
{{ item.keyword }}
Reg #: {{ item.registration_number }}
Serial #: {{ item.serial_number }}
Filed: {{ item.filing_date }}
Registered: {{ item.registration_date }}
Expires: {{ item.expiration_date }}
{{ owner.name }}
{{ owner.address1 }} {% if owner.address2 %}{{ owner.address2 }},{% endif %} {{ owner.city }}, {{ owner.state }} {% if owner.country %}, {{ owner.country }}{% endif %} {% if owner.postcode %}{{ owner.postcode }}{% endif %}
{{ owner.owner_label }}
{{ item.status_label }}
{{ owner.legal_entity_type_label }}
{% endif %}
{% endblock content %}