2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-06-12 10:05:36 +00:00

change url pattern

This commit is contained in:
Matthias Mair
2023-01-28 15:25:13 +01:00
parent 1c06b89d9d
commit 2562ac7797
3 changed files with 4 additions and 4 deletions

View File

@ -71,7 +71,7 @@ fullwith: true
<h4 class="plugin_links">Categories</h4>
<div>
{% for categorie in page.categories %}
<a href="/categories/#{{ categorie | slugify }}"><span class="plugin_cat">{{ categorie }}</span></a>
<a href="{% link categories.html %}#{{ categorie | slugify }}"><span class="plugin_cat">{{ categorie }}</span></a>
{% endfor %}
</div>
</div>
@ -80,7 +80,7 @@ fullwith: true
<h4 class="plugin_links">Tags</h4>
<div>
{% for tag in page.tags %}
<a href="/tags/#{{ tag | slugify }}"><span class="plugin_tag">{{ tag }}</span></a>
<a href="{% link tags.html %}#{{ tag | slugify }}"><span class="plugin_tag">{{ tag }}</span></a>
{% endfor %}
</div>
</div>