diff options
| author | Steve Piercy <web@stevepiercy.com> | 2015-05-22 17:37:58 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2015-05-22 17:40:13 -0700 |
| commit | 003b9aaef924ba3934a8e23854be5b7a6e6ae7e0 (patch) | |
| tree | 980b1d590a907e1014059ee689919eb52aa9d7f7 /docs/quick_tutorial | |
| parent | 61bec62b9b5147abff09db1fd826b6a064a19e3f (diff) | |
| download | pyramid-003b9aaef924ba3934a8e23854be5b7a6e6ae7e0.tar.gz pyramid-003b9aaef924ba3934a8e23854be5b7a6e6ae7e0.tar.bz2 pyramid-003b9aaef924ba3934a8e23854be5b7a6e6ae7e0.zip | |
- add jQuery to the template
- punctuation, grammar
Diffstat (limited to 'docs/quick_tutorial')
| -rw-r--r-- | docs/quick_tutorial/forms.rst | 6 | ||||
| -rw-r--r-- | docs/quick_tutorial/forms/tutorial/wikipage_addedit.pt | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/docs/quick_tutorial/forms.rst b/docs/quick_tutorial/forms.rst index b08167edc..f81b88fc2 100644 --- a/docs/quick_tutorial/forms.rst +++ b/docs/quick_tutorial/forms.rst @@ -12,13 +12,13 @@ Background Modern web applications deal extensively with forms. Developers, though, have a wide range of philosophies about how frameworks should help them with their forms. As such, Pyramid doesn't directly bundle -one particular form library. Instead, there are a variety of form +one particular form library. Instead there are a variety of form libraries that are easy to use in Pyramid. :ref:`Deform <deform:overview>` is one such library. In this step, we introduce Deform for our -forms and validation. This also gives us the -:ref:`Colander <colander:overview>` for schemas and validation. +forms and validation. This also gives us :ref:`Colander <colander:overview>` +for schemas and validation. Deform is getting a facelift, with styling from Twitter Bootstrap and advanced widgets from popular JavaScript projects. The work began in diff --git a/docs/quick_tutorial/forms/tutorial/wikipage_addedit.pt b/docs/quick_tutorial/forms/tutorial/wikipage_addedit.pt index 3292dfd90..547465018 100644 --- a/docs/quick_tutorial/forms/tutorial/wikipage_addedit.pt +++ b/docs/quick_tutorial/forms/tutorial/wikipage_addedit.pt @@ -6,6 +6,8 @@ <link rel="stylesheet" type="text/css" href="${request.static_url(reqt)}"/> </tal:block> + <script src="${request.static_url('deform:static/scripts/jquery-2.0.3.min.js')}" + type="text/javascript"></script> <tal:block tal:repeat="reqt view.reqts['js']"> <script src="${request.static_url(reqt)}" type="text/javascript"></script> |
