From ba3cdfee16ca65da218c7a9724b6d3a7a770fc81 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sat, 24 Feb 2007 21:26:12 -0800 Subject: work on integrating comments universally --- bn_django/templates/comments/form.html | 36 ++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 bn_django/templates/comments/form.html (limited to 'bn_django/templates/comments/form.html') diff --git a/bn_django/templates/comments/form.html b/bn_django/templates/comments/form.html new file mode 100644 index 0000000..316d6a1 --- /dev/null +++ b/bn_django/templates/comments/form.html @@ -0,0 +1,36 @@ +{% load i18n %} +
+ +{% if user.is_authenticated %} +

{% trans "Username:" %} {{ user.username }} ({% trans "Log out" %})

+{% else %} +


{% trans "Password:" %} ({% trans "Forgotten your password?" %})

+{% endif %} + +{% if ratings_optional or ratings_required %} +

{% trans "Ratings" %} ({% if ratings_required %}{% trans "Required" %}{% else %}{% trans "Optional" %}{% endif %}):

+ +{% for value in rating_range %}{% endfor %} +{% for rating in rating_choices %} +{% for value in rating_range %}{% endfor %} +{% endfor %} +
 {{ value }}
{{ rating }}
+ +{% endif %} + +{% if photos_optional or photos_required %} +

({% if photos_required %}{% trans "Required" %}{% else %}{% trans "Optional" %}{% endif %}): +

+ +{% endif %} + +


+

+ +

+ + + + +

+
-- cgit v1.2.3