1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>WTForms Documentation</title>
<link rel="stylesheet" href="{{ pathto('_static/main.css', 1) }}" type="text/css">
<link rel="stylesheet" href="{{ pathto('_static/docstyles.css', 1) }}" type="text/css">
<link rel="stylesheet" href="{{ pathto('_static/print.css', 1) }}" type="text/css" media="print">
<link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css">
{%- if builder != 'htmlhelp' %}
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '{{ pathto("", 1) }}',
VERSION: '{{ release }}'
};
</script>
<script type="text/javascript" src="{{ pathto('_static/jquery.js', 1) }}"></script>
<script type="text/javascript" src="{{ pathto('_static/searchtools.js', 1) }}"></script>
<script type="text/javascript" src="{{ pathto('_static/doctools.js', 1) }}"></script>
{%- endif %}
{%- if use_opensearch and builder != 'htmlhelp' %}
<link rel="search" type="application/opensearchdescription+xml"
title="Search within {{ docstitle }}"
href="{{ pathto('_static/opensearch.xml', 1) }}">
{%- endif %}
{%- if hasdoc('about') %}
<link rel="author" title="About these documents" href="{{ pathto('about') }}">
{%- endif %}
<link rel="contents" title="Global table of contents" href="{{ pathto('contents') }}">
<link rel="index" title="Global index" href="{{ pathto('genindex') }}">
<link rel="search" title="Search" href="{{ pathto('search') }}">
{%- if hasdoc('copyright') %}
<link rel="copyright" title="Copyright" href="{{ pathto('copyright') }}">
{%- endif %}
<link rel="top" title="{{ docstitle }}" href="{{ pathto('index') }}">
{%- if parents %}
<link rel="up" title="{{ parents[-1].title|striptags }}" href="{{ parents[-1].link|e }}">
{%- endif %}
{%- if next %}
<link rel="next" title="{{ next.title|striptags }}" href="{{ next.link|e }}">
{%- endif %}
{%- if prev %}
<link rel="prev" title="{{ prev.title|striptags }}" href="{{ prev.link|e }}">
{%- endif %}
{% block extrahead %}{% endblock %}
</head>
<body>
<div id="body">
<div id="header">
<h1 id="logo"><a href="{{ pathto('index') }}"
title="back to the documentation overview"><img src="{{ pathto('_static/wtforms.png', 1) }}" alt="WTForms" /></a></h1>
<ul id="menu">
<li><a href="http://wtforms.simplecodes.com/">Website</li>
<li><a href="{{ pathto('index') }}">Documentation</a></li>
<li><a href="{{ pathto('faq') }}">FAQ</a></li>
<li><a href="http://groups.google.com/group/wtforms/">Mailing List</a></li>
<li><a href="http://github.com/wtforms/wtforms/">Code</a></li>
</ul>
</div>
<div id="content">
{%- if display_toc %}
<div id="toc">
<h3>Table Of Contents</h3>
<div class="inner">{{ toc }}</div>
</div>
{%- endif %}
{% block body %}{% endblock %}
<div style="clear: both"></div>
</div>
<div id="footer">
© Copyright 2010 by the <a href="http://wtforms.simplecodes.com">WTForms Team</a>,
documentation generated by <a href="http://sphinx.pocoo.org/">Sphinx</a>
</div>
</div>
</body>
</html>
|