Home | History | Annotate | Download | only in samplesyncadapter_server

Lines Matching full:form

34   """Represents django form for entering user info."""
41 """Inserts new users. GET presents a blank form. POST processes it."""
45 '<form method="POST" '
48 # This generates our shopping list form and writes it in the response
52 '</form></body></html>')
62 # Reprint the form
64 '<form method="POST" '
70 '</form></body></html>')
74 """Edits users. GET presents a form prefilled with user info
81 '<form method="POST" '
84 # This generates our shopping list form and writes it in the response
89 '</form></body></html>' % id)
102 # Reprint the form
104 '<form method="POST" '
111 '</form></body></html>' % id)
129 """Represents django form for entering user's credentials."""
136 """Inserts user credentials. GET shows a blank form, POST processes it."""
140 '<form method="POST" '
143 # This generates our shopping list form and writes it in the response
147 '</form></body></html>')
157 # Reprint the form
159 '<form method="POST" '
165 '</form></body></html>')
169 """Represents django form for entering user's friends."""
177 """Inserts user's new friends. GET shows a blank form, POST processes it."""
182 '<form method="POST" '
185 # This generates our shopping list form and writes it in the response
190 '</form></body></html>' % user)
212 # Reprint the form
214 '<form method="POST" '
220 '</form></body></html>')