| OLD | NEW |
| 1 {% set title = 'Isolate Server' %} | 1 {% set title = 'Isolate Server' %} |
| 2 {% extends "isolate/base.html" %} | 2 {% extends "isolate/base.html" %} |
| 3 | 3 |
| 4 | 4 |
| 5 {% block headers %} | 5 {% block headers %} |
| 6 <style> | 6 <style> |
| 7 html, body { | 7 html, body { |
| 8 height: 95%; | 8 height: 95%; |
| 9 margin: 0; | 9 margin: 0; |
| 10 width: 100%; | 10 width: 100%; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 Enter the namespace and digest of an object:<br> | 37 Enter the namespace and digest of an object:<br> |
| 38 <form id="form1" method="GET"> | 38 <form id="form1" method="GET"> |
| 39 <input id="namespace" name="namespace" value="{{namespace}}" /><br> | 39 <input id="namespace" name="namespace" value="{{namespace}}" /><br> |
| 40 <input id="digest" name="digest" maxlength=40 size=40 value="{{digest}}" /> | 40 <input id="digest" name="digest" maxlength=40 size=40 value="{{digest}}" /> |
| 41 <br> | 41 <br> |
| 42 <input type=submit value="Load item"/><br> | 42 <input type=submit value="Load item"/><br> |
| 43 </form> | 43 </form> |
| 44 <hr> | 44 <hr> |
| 45 | 45 |
| 46 <div id="iframe-entry"></div> | 46 <div id="iframe-entry"></div> |
| 47 <iframe id="content" class="use_all_space" sandbox="allow-same-origin allow-popu
ps" src="/content?namespace={{namespace}}&digest={{digest}}"> | 47 <iframe id="content" class="use_all_space" sandbox="allow-same-origin allow-popu
ps" |
| 48 src="/content?namespace={{namespace}}&digest={{digest}}{% if as is defin
ed %}&as={{as}}{% endif %}"> |
| 48 </iframe> | 49 </iframe> |
| 49 {% endblock %} | 50 {% endblock %} |
| OLD | NEW |