parent
5597af9914
commit
a264fd12b1
6 changed files with 34 additions and 1 deletions
@ -0,0 +1,14 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from django.template import Library |
||||
|
||||
from ..forms import SiteReviewForm |
||||
|
||||
register = Library() |
||||
|
||||
|
||||
@register.assignment_tag |
||||
def site_review_form(): |
||||
""" |
||||
Форма для отзывов о сайте и предложений по улучшению |
||||
""" |
||||
return SiteReviewForm() |
||||
Loading…
Reference in new issue