Hello i have made a base template like this:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
<head>
    <title>{% block title %}{% endblock %}</title>
    <
</head>
<body>
      <div id="bordo_sx">
        <p class="menu"> Please make your selection </p>
        <ul>
            <li> <a href="http://www.pppi.com";>Go To O.F.B. Home Page</
a>
            <li> <a href="/django/scarico_disegni">Go To Download
Draw. Page</a>
            <li> <a href="/django/richiedi">Go To Request Page</a>
            </li>
        </ul>
    </div>
        <div id="titoli"><h1>{{titolo}}</h1></div>
     <div id="main">
    {% block main %} {% endblock %}
    </div>
</body>
</html>

Than i have made this template:
{% extends "t_base.html" %}
    {% block title %}Request Of Quotation{% endblock %}
    <form action="grazie.html", method="POST">
      {% block main %}
           <table>
            {{form.as_table}}
          </table>
        <input type="submit" value="Send your Request">
       {% endblock %}
    </form>

But when i push the submit nothing is done, and in the source of the
web page there is nothing about form action and form method

Can you help me to correct this

Thanks

Luca


--~--~---------~--~----~------------~-------~--~----~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to