aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/templates
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-09-05 21:01:22 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-09-05 21:01:22 -0500
commit677f55cc51c82c80005b0ff6658e9937133ef78b (patch)
tree22fb4f2731a11b5b20ab64987a925ef3d0607861 /mediagoblin/templates
parentb7f7c13b6d70113857bac89c426d17dffc55bc6d (diff)
downloadmediagoblin-677f55cc51c82c80005b0ff6658e9937133ef78b.tar.lz
mediagoblin-677f55cc51c82c80005b0ff6658e9937133ef78b.tar.xz
mediagoblin-677f55cc51c82c80005b0ff6658e9937133ef78b.zip
A couple more delete UI tweaks
- Adjusting HTML indentation - Making the cancel button a link rather than a button (a bit missized though it seems... maybe a feature ;))
Diffstat (limited to 'mediagoblin/templates')
-rw-r--r--mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html b/mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html
index 3fbc2862..9192289e 100644
--- a/mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html
+++ b/mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html
@@ -32,22 +32,22 @@
{%- endtrans %}
</h1>
- <div style="text-align: center;" >
+ <div style="text-align: center;" >
<img src="{{ request.app.public_store.file_url(
media['media_files']['thumb']) }}" />
</div>
- <br />
+ <br />
<p>
- {{ form.confirm }}
- {{ _(form.confirm.label.text) }}
- </p>
+ {{ form.confirm }}
+ {{ _(form.confirm.label.text) }}
+ </p>
+
<div class="form_submit_buttons">
-
- <a href="{{ media.url_for_self(request.urlgen) }}"><input type="button" value="{% trans %}Cancel{% endtrans %}" class="button" /></a>
+ {# TODO: This isn't a button really... might do unexpected things :) #}
+ <a class="cancel_link" href="{{ media.url_for_self(request.urlgen) }}">{% trans %}Cancel{% endtrans %}</a>
<input type="submit" value="{% trans %}Delete Permanently{% endtrans %}" class="button" />
-
</div>
</div>
</form>