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.
25 lines
665 B
25 lines
665 B
{% extends 'base_catalog.html' %}
|
|
{% load static %}
|
|
|
|
|
|
{% block style %}
|
|
<link rel="stylesheet" href="{% static 'ninjaplugin/plugin/plugin.css' %}">
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script src="{% static 'ninjaplugin/plugin/jquery.mousewheel.js' %}"></script>
|
|
<script src="{% static 'ninjaplugin/plugin/plugin.js' %}"></script>
|
|
<script src="{% static 'ninjaplugin/plugin/init.js' %}"></script>
|
|
|
|
{% endblock %}
|
|
|
|
{% block content_list %}
|
|
<div class="m-article">
|
|
<label for="id_country">Country</label><input type="hidden" id="id_country"/>
|
|
|
|
<br/>
|
|
</br>
|
|
<label for="id_theme">Theme</label><input type="hidden" id="id_theme"/>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|