Hello, the following code will list all the attributes from my
models.py,  how can i get it to just show the attrubute that i want.

<form action="" method="post">
   {{form.as_p }}

    <input type="submit" name="create" value="Create">
</form>


for example, I just want to show the first name and last name of the
attributes and save them to the database once the form is submitted.

<form action="" method="post">
  <input type="text" name="first_name">
  <input type="text" name="last_name">
  <input type="submit" name="create" value="Create">

</form>


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

Reply via email to