diff options
author | tilly-Q <nattilypigeonfowl@gmail.com> | 2014-05-06 12:39:23 -0400 |
---|---|---|
committer | tilly-Q <nattilypigeonfowl@gmail.com> | 2014-05-06 12:39:23 -0400 |
commit | fffc5dcfe031d30551a91e668b377d443d9267db (patch) | |
tree | 90dc14caa92ca90e461c38067b16758b586f6434 /mediagoblin/templates | |
parent | 9f5d388ec01c195ffbacc4a1fd876fb507a6f62d (diff) | |
download | mediagoblin-fffc5dcfe031d30551a91e668b377d443d9267db.tar.lz mediagoblin-fffc5dcfe031d30551a91e668b377d443d9267db.tar.xz mediagoblin-fffc5dcfe031d30551a91e668b377d443d9267db.zip |
Created the media metadata editor page
Diffstat (limited to 'mediagoblin/templates')
-rw-r--r-- | mediagoblin/templates/mediagoblin/edit/metadata.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mediagoblin/templates/mediagoblin/edit/metadata.html b/mediagoblin/templates/mediagoblin/edit/metadata.html new file mode 100644 index 00000000..3f97555e --- /dev/null +++ b/mediagoblin/templates/mediagoblin/edit/metadata.html @@ -0,0 +1,23 @@ +{# +# 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/>. +#} +{%- extends "mediagoblin/base.html" %} +{% import "/mediagoblin/utils/wtforms.html" as wtforms_util %} + +{% block mediagoblin_content %} + {{ wtforms_util.render_divs(form) }} +{% endblock mediagoblin_content %} |