Currently in src/templates/base.html, the Codabench logo is loaded with a hardcoded static path:
<img class="ui mini image" src="/static/img/Cha_Logo.png">
Shouldn't it be loaded using the Django template tag {% static %} as below?
<img class="ui mini image" src="{% static 'img/Cha_Logo.png' %}">
I’d be happy to open a small PR with this change if you think it’s worthwhile.