Created
March 13, 2012 00:33
-
-
Save Miserlou/2025683 to your computer and use it in GitHub Desktop.
Django Placeholder Template Tag
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.template import Library | |
| import re | |
| register = Library() | |
| def placeholder(value, token): | |
| value.field.widget.attrs["placeholder"] = token | |
| return value | |
| register.filter(placeholder) |
KingGame0
commented
May 14, 2024
<style type="text/css"></style>
KingGame
--
Gold99
PGasia
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment