diff --git a/core/templates/core/_edit_form.html b/core/templates/core/_edit_form.html index 3068429..ec488a3 100644 --- a/core/templates/core/_edit_form.html +++ b/core/templates/core/_edit_form.html @@ -3,13 +3,12 @@ {% csrf_token %}
{% trans "Type:" %} {{ item.get_kind_display }}
-
- -
-
-
{% trans "Choose tag" %}
{% for tag in tags %}{% endfor %}
+
+ {% trans "Add tags" %} +
+ {% for tag in tags %}{% endfor %}
-
+
diff --git a/core/templates/core/base.html b/core/templates/core/base.html index 217888b..a5356a3 100644 --- a/core/templates/core/base.html +++ b/core/templates/core/base.html @@ -23,7 +23,7 @@
{% block toolbar_filter %}{% endblock %}
{% for message in messages %}
{{ message }}
{% endfor %}{% block content %}{% endblock %}
-{% if user.is_authenticated %}{% endif %} +{% if user.is_authenticated and request.resolver_match.url_name == 'index' %}{% endif %}