Hi,
I have a base template with with tabs like create user, edit user and
so on.
My base.html is as follows:
<body>
<div class="tabs">
<ul>
<li class ="active"><a href="/static/
view_user.html">View User</a>
</li>
<li><a href="/static/
create_user_form.html">Create User</a>
</li>
<li><a href="/static/edit_user_form.html">Edit
User </a>
</li>
</ul>
</div>
</div>
</div>
<div class="bodycontent">
<table class="stdtable" id="content">
{% block content %}{% endblock %}
</table>
</div>
</body>
But when i am clicking on create user tab I am getting the following
page:
{% extends "templates/base.html" %} {% block content %}
{{form.name.error}} Name {{form.name}} {{form.permission.error}}
Permission {{form.permission}}
{% endblock %}
The page is not getting render.
Any idea what the problem is?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---