Content Management/Internal Questions: Difference between revisions

From OLPC
Jump to navigation Jump to search
No edit summary
No edit summary
Line 12: Line 12:
----
----


<code><pre>
<code><pre><input name="field_name" type="file" /></pre></code>
<form action="somefile.html" method="post">
Text: <input name="a_text_field" type="text" /><br />
File: <input name="field_name" type="file" /><br />
<input name="submit_button" type="submit" />
</form>
</pre></code>

Revision as of 20:17, 22 October 2007

Python



Django


Design


<form action="somefile.html" method="post">
	Text: <input name="a_text_field" type="text" /><br />
	File: <input name="field_name" type="file" /><br />
	<input name="submit_button" type="submit" />
</form>