- Author:
- [email protected]
- Posted:
- May 10, 2013
- Language:
- Python
- Version:
- 1.5
- Score:
- 0 (after 0 ratings)
Usage:
{%formfield form.description rows="3"%}
1 2 3 4 5 6 7 8 | from django import template
register = template.Library()
@register.simple_tag
def formfield(field,**kwargs):
field.field.widget.attrs.update(kwargs)
return field
|
More like this
- LazyPrimaryKeyRelatedField by LLyaudet 1 week ago
- CacheInDictManager by LLyaudet 1 week ago
- MYSQL Full Text Expression by Bidaya0 1 week, 1 day ago
- Custom model manager chaining (Python 3 re-write) by Spotted1270 2 weeks ago
- Django Standard API Response Middleware for DRF for modern frontend easy usage by Denactive 1 month ago
Comments
Please login first before commenting.