parent
0ca4296ccb
commit
318d1838df
12 changed files with 351 additions and 14 deletions
@ -0,0 +1,20 @@ |
|||||||
|
# -*- coding: utf-8 -*- |
||||||
|
from __future__ import unicode_literals |
||||||
|
|
||||||
|
from django.db import models, migrations |
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration): |
||||||
|
|
||||||
|
dependencies = [ |
||||||
|
('trademark', '0001_initial'), |
||||||
|
] |
||||||
|
|
||||||
|
operations = [ |
||||||
|
migrations.AddField( |
||||||
|
model_name='nice', |
||||||
|
name='glyph', |
||||||
|
field=models.CharField(default='', max_length=255), |
||||||
|
preserve_default=False, |
||||||
|
), |
||||||
|
] |
||||||
@ -1,11 +1,11 @@ |
|||||||
{% extends "trademark/base.html" %} |
{% extends "trademark/base.html" %} |
||||||
|
|
||||||
{% block trademark_content %} |
{% block trademark_content %} |
||||||
|
<h1>Онлайн-поиск товарных знаков <small>по базе свидетельств Роспатента</small> |
||||||
|
</h1> |
||||||
|
{% include 'trademark/form.html' %} |
||||||
|
|
||||||
|
<h3>Для вдохновения</h3> |
||||||
|
<p>Исключительные права на эти товарные знаки не продлили, поэтому их <a href="http://zuykov.com/ru/trademarks/registraciya-tovarnogo-znaka/">регистрация</a> возможна после проведения <a href="http://zuykov.com/ru/trademarks/poisk-tovarnogo-znaka/">полного поиска</a>.</p> |
||||||
|
|
||||||
<h1>История поисков товарных знаков</h1> |
|
||||||
<ul class="trademarks-searches"> |
|
||||||
{% for tm in trademarks|slice:":10" %} |
|
||||||
<li><a href="results/{{ tm.slug }}">{{ tm.request|title }}</a></li> |
|
||||||
{% endfor %} |
|
||||||
</ul> |
|
||||||
{% endblock %} |
{% endblock %} |
||||||
@ -0,0 +1,70 @@ |
|||||||
|
{% extends "trademark/base.html" %} |
||||||
|
{% load i18n menu_tags cms_tags %} |
||||||
|
|
||||||
|
{% block trademark_content %} |
||||||
|
<div class="nice-landing nice-detail"> |
||||||
|
|
||||||
|
<div class="row"> |
||||||
|
<div class="col-xs-12 col-sm-8"> |
||||||
|
|
||||||
|
<h1><i class="fa {{ nice.glyph }}" aria-hidden="true"></i> <strong>Класс {{ nice.nice_id }}</strong> <small>{{ nice.title }}</small></h1> |
||||||
|
|
||||||
|
<ol class="list-unstyled list-inline breadcrumb" vocab="http://schema.org/" typeof="BreadcrumbList"> |
||||||
|
<li property="itemListElement" typeof="ListItem"> |
||||||
|
<a href="{% page_url "main" %}" property="item" typeof="WebPage"><span property="name">Главная страница</span></a> |
||||||
|
<meta property="position" content="1"> |
||||||
|
</li> |
||||||
|
<li property="itemListElement" typeof="ListItem"> |
||||||
|
<a href="{% page_url "trademarks" %}" property="item" typeof="WebPage"><span property="name">Товарные знаки</span></a> |
||||||
|
<meta property="position" content="2"> |
||||||
|
</li> |
||||||
|
<li property="itemListElement" typeof="ListItem"> |
||||||
|
<a href="{% url 'trademark:nices-catalog' %}" property="item" typeof="WebPage"><span property="name">Каталог классов МКТУ</span></a> |
||||||
|
<meta property="position" content="3"> |
||||||
|
</li> |
||||||
|
<li property="itemListElement" typeof="ListItem"> |
||||||
|
<span property="name">Класс {{ nice.nice_id }}</span> |
||||||
|
<meta property="position" content="4"> |
||||||
|
</li> |
||||||
|
</ol> |
||||||
|
|
||||||
|
<p>{{ nice.description }}</p> |
||||||
|
|
||||||
|
</div> |
||||||
|
<div class="col-xs-12 col-sm-4 no-print"> |
||||||
|
<div class="trademark-search-block"> |
||||||
|
<h3>Поиск товарных знаков</h3> |
||||||
|
{% include 'trademark/form.html' %} |
||||||
|
</div> |
||||||
|
|
||||||
|
{% if identity.count > 0 %} |
||||||
|
{% include 'trademark/registration.html' with trademark_title=keyword.request nice_available=nice_available nice_busy=nice_busy %} |
||||||
|
{% endif %} |
||||||
|
|
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<h4>{% if nice.nice_id > 38 %}Услуги{% else %}Товары{% endif %}, которые относятся к {{ nice.nice_id }} классу МКТУ:</h4> |
||||||
|
<ul class="nice-products-alphabet list-inline"> |
||||||
|
{% for letter, words in nice.popular_products_alphabet %} |
||||||
|
<li class="nice-products-alphabet-letter"> |
||||||
|
<h4>{{ letter }}</h4> |
||||||
|
<ul class="nice-products-list list-inline"> |
||||||
|
{% for word, products in words %} |
||||||
|
{% if products|length %} |
||||||
|
<li class="product-a-lot"> |
||||||
|
<button popover="{{ products }}" popover-trigger="mouseenter" popover-placement="right" class="btn btn-xs btn-default">{{ word }}</button> |
||||||
|
</li> |
||||||
|
{% elif products %} |
||||||
|
<li class="product-one"> |
||||||
|
<a href="{% url 'trademark:product-detail' pk=products %}">{{ word }}</a> |
||||||
|
</li> |
||||||
|
{% endif %} |
||||||
|
</li> |
||||||
|
{% endfor %} |
||||||
|
</ul> |
||||||
|
</li> |
||||||
|
{% endfor %} |
||||||
|
</ul> |
||||||
|
|
||||||
|
</div> |
||||||
|
{% endblock %} |
||||||
@ -0,0 +1,59 @@ |
|||||||
|
{% extends "trademark/base.html" %} |
||||||
|
{% load i18n menu_tags cms_tags %} |
||||||
|
|
||||||
|
{% block trademark_content %} |
||||||
|
|
||||||
|
<div class="nice-landing"> |
||||||
|
<h1>Классы МКТУ</h1> |
||||||
|
<ol class="list-unstyled list-inline breadcrumb" vocab="http://schema.org/" typeof="BreadcrumbList"> |
||||||
|
<li property="itemListElement" typeof="ListItem"> |
||||||
|
<a href="{% page_url "main" %}" property="item" typeof="WebPage"><span property="name">Главная страница</span></a> |
||||||
|
<meta property="position" content="1"> |
||||||
|
</li> |
||||||
|
<li property="itemListElement" typeof="ListItem"> |
||||||
|
<a href="{% page_url "trademarks" %}" property="item" typeof="WebPage"><span property="name">Товарные знаки</span></a> |
||||||
|
<meta property="position" content="2"> |
||||||
|
</li> |
||||||
|
<li property="itemListElement" typeof="ListItem"> |
||||||
|
<span property="name">Каталог классов МКТУ</span> |
||||||
|
<meta property="position" content="3"> |
||||||
|
</li> |
||||||
|
</ol> |
||||||
|
|
||||||
|
<div class="row"> |
||||||
|
<div class="col-xs-12 col-sm-8"> |
||||||
|
<p>Каждый товарный знак регистрируется в отношении определённых товаров и услуг, распределенных по классам. Всего таких классов на сегодняшний день 45 (34 — товаров и 11 — услуг), они установлены Международной классификацией товаров и услуг для регистрации знаков (МКТУ).</p> |
||||||
|
<p>МКТУ — это сокращенное название Международной классификации товаров и услуг (International (Nice) Classification of Goods and Services for the Purposes of the Registration of Marks), учрежденной Соглашением о классификациях (Ниццкое соглашение), предназначенной для регистрации товарных знаков.</p> |
||||||
|
|
||||||
|
<p>По принципу действия коды МКТУ (МКТиУ) сроднимы с кодами ОКВЭД (Общероссийский классификатор видов экономической деятельности).</p> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-4 no-print"> |
||||||
|
<div class="trademark-search-block"> |
||||||
|
<h3>Поиск товарных знаков</h3> |
||||||
|
{% include 'trademark/form.html' %} |
||||||
|
</div> |
||||||
|
|
||||||
|
{% if identity.count > 0 %} |
||||||
|
{% include 'trademark/registration.html' with trademark_title=keyword.request nice_available=nice_available nice_busy=nice_busy %} |
||||||
|
{% endif %} |
||||||
|
|
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<ul class="nice-classes-list list-unstyled list-inline"> |
||||||
|
{% for nice in nices %} |
||||||
|
<li> |
||||||
|
<h4><i class="fa {{ nice.glyph }}" aria-hidden="true"></i> <a href="{% url 'trademark:nice-detail' pk=nice.id %}">Класс {{ nice.nice_id }}</a> <small>{{ nice.title }}</small></h4> |
||||||
|
<p>{{ nice.description }}</p> |
||||||
|
<p>Примеры {% if nice.nice_id > 38 %}услуг{% else %}товаров{% endif %} из класса:</p> |
||||||
|
<ul class="nice-products-list list-inline"> |
||||||
|
{% for product in nice.popular_products|slice:":10" %} |
||||||
|
<li>{{ product.title }}</li> |
||||||
|
{% endfor %} |
||||||
|
</ul> |
||||||
|
|
||||||
|
</li> |
||||||
|
{% endfor %} |
||||||
|
</ul> |
||||||
|
</div> |
||||||
|
{% endblock %} |
||||||
Loading…
Reference in new issue