From f9f135647c30843059fd5eaef3df96805be1dea5 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sat, 2 Jul 2011 17:49:51 -0500 Subject: [PATCH] Issue 406: media_details template deprecated. Removing! --- .../templates/mediagoblin/media_details.html | 37 ------------------- 1 file changed, 37 deletions(-) delete mode 100644 mediagoblin/templates/mediagoblin/media_details.html diff --git a/mediagoblin/templates/mediagoblin/media_details.html b/mediagoblin/templates/mediagoblin/media_details.html deleted file mode 100644 index 0e907616..00000000 --- a/mediagoblin/templates/mediagoblin/media_details.html +++ /dev/null @@ -1,37 +0,0 @@ -{# -# GNU MediaGoblin -- federated, autonomous media hosting -# Copyright (C) 2011 Free Software Foundation, Inc -# -# 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 . -#} -{% extends "mediagoblin/base.html" %} -{% block mediagoblin_content %} - {# temporarily, an "image gallery" that isn't one really ;) #} - {% if media %} -
- -

Media details for {{media.title}}

-

-
Uploaded: {{ media.created}} -
Description: {{media.description}} -

-
- - {% else %} -

Sorry, no such media found.

- {% endif %} -{% endblock %}