webpage_read.html 528 B

12345678910111213141516
  1. <html>
  2. <style>label { display:none; } textarea {height:8em; width:100%}</style>
  3. <body>
  4. <form method=post>{% csrf_token %}
  5. {{form.as_p}}
  6. <input type="hidden" id="object_id" value="object.uuid">
  7. <input type="submit" value="Finish" />
  8. </form>
  9. <a href="{{object.url}}" target="_blank">Open in new window</a>
  10. <iframe style="height:78%; width:100%" src="{{object.url}}" title="{{object.url}}" allowfullscreen sandbox>
  11. <p>
  12. Page could not be opened, use link above to read.
  13. </p>
  14. </iframe>
  15. </body>
  16. </html>