feat(portfolio): add project tags

This commit is contained in:
2026-09-16 17:31:04 +02:00
parent 6a4e6ba9c5
commit c2e5f9a3a2
4 changed files with 68 additions and 0 deletions
+12
View File
@@ -12,6 +12,12 @@
<div class="card-body">
<h4>{{ project.name }}</h4>
<p>{{ project.short_description }}</p>
<div>
{% for t in project.tags.all %}
<div class="badge text-white fs-5"
style="background-color: #{{ t.color }}">{{ t }}</div>
{% endfor %}
</div>
</div>
</a>
{% else %}
@@ -19,6 +25,12 @@
<div class="card-body">
<h4>{{ project.name }}</h4>
<p>{{ project.short_description }}</p>
<div>
{% for t in project.tags.all %}
<div class="badge text-white fs-5"
style="background-color: #{{ t.color }}">{{ t }}</div>
{% endfor %}
</div>
</div>
</div>
{% endif %}