I am looking for a way to serve static files in templates based on language.
Lets assume I am having three files called de.png, en.png and fr.png.
What I want to achieve is something like:
{% get_current_language as LANGUAGE_CODE %}
{% static LANGUAGE_CODE+'.png' %}
Any suggestions?