skeleton catalog list and editor pages
This commit is contained in:
@ -11,6 +11,7 @@
|
||||
<link rel="stylesheet" href="{% static 'css/main.css' %}">
|
||||
<script src="{% static 'js/uikit.min.js' %}"></script>
|
||||
<script src="{% static 'js/uikit-icons.min.js' %}"></script>
|
||||
<script src="{% static 'js/vue.js' %}"></script>
|
||||
</head>
|
||||
<body>
|
||||
{% include "nav.html" %}
|
||||
|
||||
8
templates/catalogedit/catalogedit.html
Normal file
8
templates/catalogedit/catalogedit.html
Normal file
@ -0,0 +1,8 @@
|
||||
{% extends 'base.html' %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}{% trans "Editor"%}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
{% endblock %}
|
||||
8
templates/cataloglist/cataloglist.html
Normal file
8
templates/cataloglist/cataloglist.html
Normal file
@ -0,0 +1,8 @@
|
||||
{% extends 'base.html' %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}{% trans "Catalogs"%}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
{% endblock %}
|
||||
@ -4,7 +4,7 @@
|
||||
{% block title %}{% trans "Dashboard"%}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="uk-section uk-section-default uk-preserve-color">
|
||||
<div class="uk-section">
|
||||
<div class="uk-container">
|
||||
|
||||
<div class="uk-grid-match uk-child-width-expand@m" uk-grid>
|
||||
@ -12,9 +12,9 @@
|
||||
<div>
|
||||
<div class="uk-card uk-card-default uk-card-body">
|
||||
<h3 class="uk-card-title">{% trans "Catalogs" %}</h3>
|
||||
<ul>
|
||||
<li><a href="{% url 'home' %}">{% trans "New catalog" %}</a></li>
|
||||
<li><a href="{% url 'home' %}">{% trans "Catalog list" %}</a></li>
|
||||
<ul class="uk-list">
|
||||
<li><a href="{% url 'catalogedit' %}">{% trans "New catalog" %}</a></li>
|
||||
<li><a href="{% url 'cataloglist' %}">{% trans "Catalog list" %}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
@ -22,7 +22,7 @@
|
||||
<div>
|
||||
<div class="uk-card uk-card-default uk-card-body">
|
||||
<h3 class="uk-card-title">{% trans "Images" %}</h3>
|
||||
<ul>
|
||||
<ul class="uk-list">
|
||||
<li><a href="{% url 'home' %}">{% trans "Image downloader" %}</a></li>
|
||||
{% if not user|is_lazy_user %}
|
||||
<li><a href="{% url 'home' %}">{% trans "Image uploader" %}</a></li>
|
||||
@ -36,7 +36,7 @@
|
||||
<div>
|
||||
<div class="uk-card uk-card-default uk-card-body">
|
||||
<h3 class="uk-card-title">{% trans "Tools" %}</h3>
|
||||
<ul>
|
||||
<ul class="uk-list">
|
||||
<li><a href="{% url 'home' %}">{% trans "Region editor" %}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@ -20,8 +20,8 @@
|
||||
<a href="{% url 'home' %}">{% trans "Catalogs" %}</a>
|
||||
<div class="uk-navbar-dropdown">
|
||||
<ul class="uk-nav uk-navbar-dropdown-nav">
|
||||
<li><a href="{% url 'home' %}">New catalog</a></li>
|
||||
<li><a href="{% url 'home' %}">Catalog list</a></li>
|
||||
<li><a href="{% url 'catalogedit' %}">New catalog</a></li>
|
||||
<li><a href="{% url 'cataloglist' %}">Catalog list</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
Reference in New Issue
Block a user