Renamed template location from bootstrap_form/form.html to bootstrapform/form.html for naming consistency.

This commit is contained in:
Matt Austin 2011-09-14 10:53:18 +08:00
parent 5aedc15631
commit 7457cd6847
2 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ register = template.Library()
@register.filter
def bootstrap(form):
template = get_template("bootstrap_form/form.html")
template = get_template("bootstrapform/form.html")
context = Context({'form': form})
return template.render(context)