diff options
author | Aditi <aditi.iitr@gmail.com> | 2013-06-26 23:27:45 +0530 |
---|---|---|
committer | Aditi <aditi.iitr@gmail.com> | 2013-06-26 23:27:45 +0530 |
commit | 0ff6db861aee2c767b0b5d4321172601debe0008 (patch) | |
tree | 027342ac1b3ca79baf41b7947a95f2a8136a6923 /mediagoblin/plugins/blog/forms.py | |
parent | 054ef9a76a2ca73c0ca3cb8325a01cc981a39ddd (diff) | |
download | mediagoblin-0ff6db861aee2c767b0b5d4321172601debe0008.tar.lz mediagoblin-0ff6db861aee2c767b0b5d4321172601debe0008.tar.xz mediagoblin-0ff6db861aee2c767b0b5d4321172601debe0008.zip |
Created filr structure for blog as a plugin(option 1).
Diffstat (limited to 'mediagoblin/plugins/blog/forms.py')
-rw-r--r-- | mediagoblin/plugins/blog/forms.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mediagoblin/plugins/blog/forms.py b/mediagoblin/plugins/blog/forms.py new file mode 100644 index 00000000..52af1cf1 --- /dev/null +++ b/mediagoblin/plugins/blog/forms.py @@ -0,0 +1,17 @@ +# GNU MediaGoblin -- federated, autonomous media hosting +# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +import wtforms |