You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

65 lines
2.5 KiB

{% extends "trademark/base.html" %}
{% block trademark_content %}
<div class="row">
<div class="col-xs-12 col-sm-8">
<h1>Товарный знак «{{ tm.title }}»</h1>
<ul class="list-unstyled row">
<li class='col-xs-4'>
<h2>Подана заявка <nobr>{{ tm.application_at }}</nobr></h2>
<p>Номер <nobr>№ {{ tm.application_id }}</nobr></p>
</li>
<li class='col-xs-2 trademark-detail-arrow'>
</li>
<li class='col-xs-6'>
<h2>Регистрация <nobr>{{ tm.registration_at }}</nobr></h2>
<p>Номер свидетельства № {{ tm.cert_id }}</p>
{% if tm.status == 'Acting' %}
{% if tm.expiration_at %}
<p>Действует до {{ tm.expiration_at }}</p>
{% else %}
<p><strong>Действует</strong></p>
{% endif %}
{% else %}
<p><strong>Не действует</strong></p>
{% endif %}
</li>
</ul>
<div class="trademark-detail-description row">
<div class="col-xs-6 trademark-detail-description-visual">
<h4>Изобразительный знак:</h3>
<img src="{{ tm.image_url }}"/>
</div>
<div class="col-xs-6 trademark-detail-text">
<h4>Правообладатель:</h3>
<p>{{ tm.owner }}</p>
</div>
</div>
{% include 'trademark/nice_block_busy.html' with keyword=tm.title nice_busy=tm.nices.all products_busy=tm.products.all %}
<h4>Данные ФИПС <small>Федеральной службы по интеллектуальной собственности</small></h4>
<small>{{ tm.source_url }}</small>
<div class="trademark-detail-fips-wrap">
<iframe class="frame" src="{{ tm.source_url }}"></iframe>
</div>
</div>
<div class="col-xs-12 col-sm-4">
<div class="trademark-search-block">
<h2>Попробуйте проверить другой товарный знак</h2>
{% include 'trademark/form.html' %}
</div>
{% if nice_available.count > 0 %}
{% include 'trademark/registration.html' with trademark_title=tm.title nice_available=nice_available nice_busy=tm.nices %}
{% endif %}
</div>
</div>
{% endblock %}