Thursday, June 23, 2011

I have two doubts when It comes to django url and django templates . Please help

{% extends "base.html" %}

{% load i18n %}
Hello User {{user}}
{% block content %}
{% if form.errors %}
<p class="errorlist">{% trans "Sorry there are corrections needed
in your form below:" %} {{ form.non_field_errors }}</p>
{% endif %}
{% if form.is_multipart %}
<form enctype="multipart/form-data" method="post" action=".">
<html>Hello User {{user}}</html>
{% else %}
<form method="post" action=".">
{% endif %}
{{ form.as_p }}
<input type="submit" value="Upload Zipped Shapefile" />
</form>
{% endblock %}

This is a template of mine . It is not displaying Hello User . What
can be the error ?


The other doubt is this .


<li><a href="{% url Osmmaps %}">Create a map with OsmMap as
baselayer</a></li> This is a link on one of my templates .
Osmmaps.html is a template that displays a form comprising of a OSM
layers .

Both are in different apps .

Thus when I try to link it , this is the error I get
Reverse for 'Osmmaps' with arguments '()' and keyword arguments '{}'
not found.


I am very new to django , and am finding the django documentation on
the url a bit too difficult . Do help

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

No comments:

Post a Comment