Skip to content
This repository has been archived by the owner on Mar 15, 2020. It is now read-only.

Commit

Permalink
Merge branch 'release/0.1.16'
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Nov 4, 2019
2 parents 16666ea + 8b9b6bc commit eeeedd2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.15
0.1.16
2 changes: 1 addition & 1 deletion meta_subject/forms/slider_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ def get_context(self, name, value, attrs):
return context

class Media:
css = {"all": ("slider.css",)}
css = {"all": ("meta_subject/slider.css",)}
3 changes: 2 additions & 1 deletion meta_subject/templates/meta_subject/widgets/slider.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{% load static %}

<div class="container">
<center>
<div class="slidecontainer">
<img src="{% static 'slider.png' %}" width="101%"></img>
<img src="{% static 'meta_subject/slider.png' %}" width="101%" alt="0-100 scale"></img>
<input class="{{ widget.class }}" type="{{ widget.type }}" name="{{ widget.name }}" min="{{ widget.min }}" max="{{ widget.max }}" {% if widget.value != None %}value="{{ widget.value|stringformat:'s' }}"{% endif %}{% include "django/forms/widgets/attrs.html" %}>
<h1><B><span class="clearfix" id="id_{{ widget.name }}_value"></span> {{ widget.units }}</B></h1>
</div>
Expand Down

0 comments on commit eeeedd2

Please sign in to comment.