logo should link to main

This commit is contained in:
Klaas van Schelven
2024-02-06 22:49:06 +01:00
parent 8bdded36f5
commit d3bb7a5723

View File

@@ -11,7 +11,7 @@
<body>
<div id="content">
<div class="flex pl-4 bg-slate-200">
<img src="{% static 'images/bugsink-logo.png' %}" class="p-2 h-12 w-12">
<a href="/"><img src="{% static 'images/bugsink-logo.png' %}" class="p-2 h-12 w-12"></a>
{% for project in user_projects %} {# or, maybe, if you're single-org, or single-project, just show that #}
<a href="/issues/{{ project.id }}/"><div class="p-4 hover:bg-slate-400">{{ project.name }}</div></a>
{% endfor %}