From eb35064b13699164fa3198c866005b1432391633 Mon Sep 17 00:00:00 2001 From: Daniel Greenfeld Date: Fri, 16 Aug 2013 15:19:50 +0200 Subject: [PATCH] Fix the user templates --- .../templates/users/user_detail.html | 3 ++- .../{{cookiecutter.repo_name}}/templates/users/user_form.html | 4 ++-- .../{{cookiecutter.repo_name}}/templates/users/user_list.html | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/users/user_detail.html b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/users/user_detail.html index f30c2744..bbc33c6e 100644 --- a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/users/user_detail.html +++ b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/users/user_detail.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% raw %}{% extends "base.html" %} {% load avatar_tags %} {% load static %} @@ -37,3 +37,4 @@ {% endblock content %} +{% endraw %} \ No newline at end of file diff --git a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/users/user_form.html b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/users/user_form.html index cd6e89b3..b61567e8 100644 --- a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/users/user_form.html +++ b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/users/user_form.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% raw %}{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}User: {{ user.username }}{% endblock %} @@ -21,4 +21,4 @@ -{% endblock %} \ No newline at end of file +{% endblock %}{% endraw %} \ No newline at end of file diff --git a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/users/user_list.html b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/users/user_list.html index 579c0477..b5154a63 100644 --- a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/users/user_list.html +++ b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/users/user_list.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% raw %}{% extends "base.html" %} {% load static %}{% load i18n %} {% load avatar_tags %} @@ -31,4 +31,4 @@ -{% endblock content %} \ No newline at end of file +{% endblock content %}{% endraw %} \ No newline at end of file