Commit b91417b0 by Frank Wiles

Added regexp case insensitive help text

parent 7ffeae3e
......@@ -26,6 +26,7 @@ class TagRegExp(models.Model):
name = models.CharField(max_length=30)
regexp = models.CharField(max_length=250,
validators=[validate_regexp],
help_text='Enter a valid Regular Expression. To make it case-insensitive include "(?i)" in your expression.'
)
def __unicode__(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment