diff options
author | Aeva Ntsc <aeva.ntsc@gmail.com> | 2012-10-16 02:11:34 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-12-03 14:40:48 -0600 |
commit | 6fbde77313bb108f9c788f1c49bdc7fa190dc0b1 (patch) | |
tree | dd9bda9644c8c6044afe36eb9018a82999b885d3 | |
parent | ee3f876867b2b195ae1d648234301938bbf5cf6f (diff) | |
download | mediagoblin-6fbde77313bb108f9c788f1c49bdc7fa190dc0b1.tar.lz mediagoblin-6fbde77313bb108f9c788f1c49bdc7fa190dc0b1.tar.xz mediagoblin-6fbde77313bb108f9c788f1c49bdc7fa190dc0b1.zip |
Removed debug info from the sidebar.
-rw-r--r-- | mediagoblin/templates/mediagoblin/media_displays/stl.html | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/mediagoblin/templates/mediagoblin/media_displays/stl.html b/mediagoblin/templates/mediagoblin/media_displays/stl.html index 6cc19b14..7802bab4 100644 --- a/mediagoblin/templates/mediagoblin/media_displays/stl.html +++ b/mediagoblin/templates/mediagoblin/media_displays/stl.html @@ -143,13 +143,8 @@ window.show_things = function () { {% endblock %} {% block mediagoblin_sidebar %} -<h3>debug info</h3> -<ul> - <li>width: {{media.media_data.width}} mm</li> - <li>depth: {{media.media_data.depth}} mm</li> - <li>height: {{media.media_data.height}} mm</li> - <li>cx: {{media.media_data.center_x}} mm</li> - <li>cy: {{media.media_data.center_y}} mm</li> - <li>cz: {{media.media_data.center_z}} mm</li> -</ul> +<h3>{% trans %}File Format{% endtrans %}</h3> +<p>{{ media.media_data.file_type }}</p> +<h3>{% trans %}Object Height{% endtrans %}</h3> +<p>~{{ media.media_data.height|int }} mm</p> {% endblock %} |