Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>So I tested this quickly just by initializing the form and printing it out to the terminal I copied your form code exactly and called as follows.</p> <pre><code>myregform = MyRegistrationForm() print myregform </code></pre> <p>This return the following response in terminal</p> <pre><code>&lt;tr&gt;&lt;th&gt;&lt;label for="id_username"&gt;Username:&lt;/label&gt;&lt;/th&gt;&lt;td&gt;&lt;input id="id_username" maxlength="30" name="username" type="text" /&gt;&lt;br /&gt;&lt;span class="helptext"&gt;Required. 30 characters or fewer. Letters, digits and @/./+/-/_ only.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;th&gt;&lt;label for="id_email"&gt;Email:&lt;/label&gt;&lt;/th&gt;&lt;td&gt;&lt;input id="id_email" name="email" type="text" /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;th&gt;&lt;label for="id_first_name"&gt;First name:&lt;/label&gt;&lt;/th&gt;&lt;td&gt;&lt;input id="id_first_name" maxlength="30" name="first_name" type="text" /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;th&gt;&lt;label for="id_last_name"&gt;Last name:&lt;/label&gt;&lt;/th&gt;&lt;td&gt;&lt;input id="id_last_name" maxlength="30" name="last_name" type="text" /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;th&gt;&lt;label for="id_password1"&gt;Password:&lt;/label&gt;&lt;/th&gt;&lt;td&gt;&lt;input id="id_password1" name="password1" type="password" /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;th&gt;&lt;label for="id_password2"&gt;Password confirmation:&lt;/label&gt;&lt;/th&gt;&lt;td&gt;&lt;input id="id_password2" name="password2" type="password" /&gt;&lt;br /&gt;&lt;span class="helptext"&gt;Enter the same password as above, for verification.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt; </code></pre> <p>As you can see the first_name and last_name is displaying so my best guess would be that it has something to do with your template processing code. Maybe if you could also post that here I can have a look.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload