From 976e792336fa6c4696f534ac1d537d2a86a75e72 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 19 Apr 2010 02:24:02 +0200 Subject: [PATCH] Added links for SQLAlchemy and WTForms. --- docs/patterns/sqlalchemy.rst | 3 +++ docs/patterns/wtforms.rst | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/docs/patterns/sqlalchemy.rst b/docs/patterns/sqlalchemy.rst index 8d06187f..5a064469 100644 --- a/docs/patterns/sqlalchemy.rst +++ b/docs/patterns/sqlalchemy.rst @@ -188,3 +188,6 @@ You can also pass string of SQL statements to the >>> engine.execute('select * from users where id = :1', [1]).first() (1, u'admin', u'admin@localhost') + +For more information about SQLAlchemy, head over to the +`website `_. diff --git a/docs/patterns/wtforms.rst b/docs/patterns/wtforms.rst index e79f9d3a..0d6a313e 100644 --- a/docs/patterns/wtforms.rst +++ b/docs/patterns/wtforms.rst @@ -107,3 +107,8 @@ takes advantage of the `_formhelpers.html` template:

+ +For more information about WTForms, head over to the `WTForms +website`_. + +.. _WTForms website: http://wtforms.simplecodes.com/