- Author:
- bahoo
- Posted:
- October 6, 2010
- Language:
- HTML/template
- Version:
- 1.2
- Score:
- 1 (after 1 ratings)
I'm on my own personal writing challenge (see 750words.com for inspiration). I needed a way to get a dynamic word count, so I threw this together. Tied into django-basic-blog easily.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | Anywhere in a settings.TEMPLATE_DIRS directory:
# ./admin/<app>/change_form.html:
****************************************************
{% block extrahead %}
{{ block.super }}
<style>label b{font-weight:normal;font-size:0.75em;color:#888;display:block;margin-top:120px;}</style>
<script type="text/javascript">
django.jQuery(document).ready(function(){
django.jQuery('#id_body').keypress(function(){
django.jQuery('label[for=id_body]').html("Body:<b>Word count: " + this.value.split(" ").length + "</b>");
});
});
</script>
{% endblock %}
|
More like this
- Bootstrap Accordian by Netplay4 5 years, 11 months ago
- Bootstrap theme for django-endless-pagination? by se210 8 years, 11 months ago
- Bootstrap theme for django-endless-pagination? by se210 8 years, 11 months ago
- Reusable form template with generic view by roldandvg 9 years ago
- Pagination Django with Boostrap by guilegarcia 9 years, 1 month ago
Comments
Please login first before commenting.