aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorSean Brant2013-03-11 21:53:56 -0500
committerSean Brant2013-03-11 21:53:56 -0500
commit1f6755a36658eb0a926ad85a61dc3c14ab3135e3 (patch)
treeea800d5bd80c4a245eb686f424fc356efa1deb50 /examples
parentb9a493e0b729af31d643ff1db1ccca83304d79ca (diff)
downloadpykss-1f6755a36658eb0a926ad85a61dc3c14ab3135e3.tar.bz2
Fixes modifier classes inside styleguideblocks
Diffstat (limited to 'examples')
-rw-r--r--examples/djangoproject/djangoproject/templates/styleguide.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/djangoproject/djangoproject/templates/styleguide.html b/examples/djangoproject/djangoproject/templates/styleguide.html
index 2aa6500..1817a27 100644
--- a/examples/djangoproject/djangoproject/templates/styleguide.html
+++ b/examples/djangoproject/djangoproject/templates/styleguide.html
@@ -14,7 +14,7 @@
{% endcomment %}
{% styleguideblock styleguide "1.1" %}
- <button class="{{ modifier.class_name }}">Example Button</button>
+ <button class="{{ modifier_class }}">Example Button</button>
{% endstyleguideblock %}
{% verbatim %}
@@ -22,7 +22,7 @@
<pre>
<code>
{% styleguideblock styleguide "1.1" %}
- &lt;button class="{{ modifier.class_name }}"&gt;Example Button&lt;/button&gt;
+ &lt;button class="{{ modifier_class }}"&gt;Example Button&lt;/button&gt;
{% endstyleguideblock %}
</code>
</pre>