diff options
author | saksham1115 <saksham115@gmail.com> | 2016-06-20 05:47:43 +0000 |
---|---|---|
committer | saksham1115 <saksham115@gmail.com> | 2016-07-19 17:29:09 +0000 |
commit | 330f409ee91ad142a70617cf05a68916ef6c591e (patch) | |
tree | 27cf89471ed63f3f88f0cebba6d8766ae0b871eb /mediagoblin/templates | |
parent | 92497b7af6434d2358fd0ec52a6f6b2127ce0ae5 (diff) | |
download | mediagoblin-330f409ee91ad142a70617cf05a68916ef6c591e.tar.lz mediagoblin-330f409ee91ad142a70617cf05a68916ef6c591e.tar.xz mediagoblin-330f409ee91ad142a70617cf05a68916ef6c591e.zip |
Customizing Subs using Wtforms
Diffstat (limited to 'mediagoblin/templates')
-rw-r--r-- | mediagoblin/templates/mediagoblin/edit/edit_subtitles.html | 36 | ||||
-rw-r--r-- | mediagoblin/templates/mediagoblin/user_pages/media.html | 2 |
2 files changed, 37 insertions, 1 deletions
diff --git a/mediagoblin/templates/mediagoblin/edit/edit_subtitles.html b/mediagoblin/templates/mediagoblin/edit/edit_subtitles.html new file mode 100644 index 00000000..51bae307 --- /dev/null +++ b/mediagoblin/templates/mediagoblin/edit/edit_subtitles.html @@ -0,0 +1,36 @@ +{# +# 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 title -%} +{%- endblock %} + +{% block mediagoblin_content %} +{{ path }} + <form action="{{ request.urlgen('mediagoblin.edit.edit_subtitles',path='{{ path }}') }}" method="POST" enctype="multipart/form-data"> + <div class="form_box edit_box"> + {{ wtforms_util.render_divs(form) }} + <div class="form_submit_buttons"> + <input type="submit" value="{% trans %}Save changes{% endtrans %}" class="button_form" /> + {{ csrf_token }} + </div> + </div> + </form> +{% endblock %} diff --git a/mediagoblin/templates/mediagoblin/user_pages/media.html b/mediagoblin/templates/mediagoblin/user_pages/media.html index ed493390..a9c71c8e 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/media.html +++ b/mediagoblin/templates/mediagoblin/user_pages/media.html @@ -239,7 +239,7 @@ {%- for subtitle in media.subtitle_files %} <li> <!-- <a href="{{ request.app.public_store.file_url(subtitle.filepath) }}"> --> - <a href="{{ request.urlgen('mediagoblin.edit.custom_subtitles', + <a href="{{ request.urlgen('mediagoblin.edit.edit_subtitles', path=subtitle.filepath) }}"> {{- subtitle.name -}} <!-- </a> --> |