{% extends "se/base.html" %} {% load static %} {% block head %} {% for screen in screens %} {% endfor %} {% endblock %} {% block js %} const screen_width = {{ screenshot_size.0 }}; const screen_height = {{ screenshot_size.1 }}; {% endblock %} {% block css %} #error_pre { overflow: scroll; border: 1px; border-style: solid; border-color: #aaa; background-color: #fdd; } #screenshots { position: absolute; margin-left: -40px; } #screenshots > img { margin-top: -5px; } .img_link { position: absolute; margin-top: -4px; } .img_link:hover { position: absolute; box-shadow: 0px 0px 4px 4px #91baff; margin: -4px 0px 0px -2px; padding: 0px 8px 4px 0px; } {% endblock %} {% block body %} {% include "se/cached.html" %}
{% endblock %}