[webpages] Add title to webpage reading

This commit is contained in:
2025-05-18 09:37:53 -04:00
parent ed217cbad2
commit 5e672fc9ed

View File

@ -1,5 +1,8 @@
<html>
<style>label { display:none; } textarea {height:8em; width:100%}</style>
<head>
<style>label { display:none; } textarea {height:8em; width:100%}</style>
<title>Reading {{object.title}}</title>
</head>
<body>
<form method=post>{% csrf_token %}
{{form.as_p}}
@ -7,7 +10,7 @@
<input type="submit" value="Finish" />
</form>
<a href="{{object.url}}" target="_blank">Open in new window</a>
<iframe style="height:78%; width:100%" src="{{object.url}}" title="{{object.url}}" allowfullscreen sandbox>
<iframe style="height:84%; width:100%" src="{{object.url}}" title="{{object.url}}" allowfullscreen sandbox>
<p>
Page could not be opened, use link above to read.
</p>