{# vim: set ts=2 et sts=2 sw=2: #}
{% extends "gallery/media.html" %}
{% if media_type == 'image' %}
{% set delete_this = _('Delete image') %}
{% set delete_confirm = _('Are you sure you want to delete this image?') %}
{% set delete_warning = _('You are about to permanently delete this image. This cannot be undone! Are you sure you want to continue?') %}
{% set title = _('Delete image | {t} | Media Gallery')|f(t=media.title) %}
{% else %}
{% set delete_this = _('Delete video') %}
{% set delete_confirm = _('Are you sure you want to delete this video?') %}
{% set delete_warning = _('You are about to permanently delete this video. This cannot be undone! Are you sure you want to continue?') %}
{% set title = _('Delete video | {t} | Media Gallery')|f(t=media.title) %}
{% endif %}
{% set crumbs = [(url('gallery.gallery', media_type), _('Media Gallery')),
(url('gallery.media', media_type, media.id), media.title),
(None, delete_this)] %}
{% block content %}