Skip to content

Commit

Permalink
fixup! Add language hints
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed Feb 8, 2020
1 parent 70eb4e0 commit 9862bc6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mpicms/templates/wagtailadmin/pages/edit.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{% extends "wagtailadmin/pages/edit.html" %}
{% load static %}
{% block extra_css %}
{{ block.super }}
<style>
Expand All @@ -7,12 +8,12 @@
}

li.object.stream-field.english {
background-image: url("http://localhost:8000/static/images/en.png");
background-image: url("{% static "images/en.png" %}");
background-repeat: no-repeat
}
li.object.stream-field.german {
background: #cfe2e2;
background-image: url("http://localhost:8000/static/images/de.png");
background-image: url("{% static "images/de.png" %}");
background-repeat: no-repeat
}
</style>
Expand Down

0 comments on commit 9862bc6

Please sign in to comment.