Nevermind what I said on my last post, something is internally wrong with 
my second form.  It can't even render when I hard coded the first_name, 
last_name and the checkboxes.  Still getting Management Form Data is 
Missing.

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    {% load staticfiles %}
    <link rel="stylesheet" type="text/css" href="{% static 
'nodeform/style.css' %}" >
    <title>User Information</title>
</head>
<body>
    <h1>User Information:</h1>
    <form action="form2" method="POST">

    {{ checkbox_formset.management_form }}

    <div id="tablefont">
    <table id="table01">
        <tr>
            <th>First Name</th>
            <th>Last Name</th>
            <th class="center">Overwrite</th>
        </tr>
        <tr>
            <td>John</td>
            <td>Doe</td>
            <td class="center"><td class="center"><label for=
"id_checkbox-0-overwrite"></label>
                <input id="id_checkbox-0-overwrite" name=
"checkbox-0-overwrite" type="checkbox" /></td>
        </tr>
        <tr>
            <td>John</td>
            <td>Smith</td>
            <td class="center"><td class="center"><label for=
"id_checkbox-1-overwrite"></label>
                <input id="id_checkbox-1-overwrite" name=
"checkbox-1-overwrite" type="checkbox" /></td>
        </tr>

    </table>

    </div>
    <br>
    <p><input type="submit" value="Confirm">
    <a href="{% url 'form1' %}">
        <button type="button">Cancel</button></a></p>
    </form>
</body>
</html>


-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/37a2f383-72fd-4eb4-ad99-c482b80c5d9a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to