Use twisted tags in check results template file

This commit is contained in:
Sajith Sasidharan 2020-06-03 17:57:27 -04:00
parent cbc414725c
commit 9d104f5893

View File

@ -1,4 +1,4 @@
<html xmlns:n="http://nevow.com/ns/nevow/0.1"> <html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1">
<head> <head>
<title>Tahoe-LAFS - Check Results</title> <title>Tahoe-LAFS - Check Results</title>
<link href="/tahoe.css" rel="stylesheet" type="text/css"/> <link href="/tahoe.css" rel="stylesheet" type="text/css"/>
@ -7,17 +7,17 @@
</head> </head>
<body> <body>
<h1>File Check Results for SI=<span n:render="storage_index" /></h1> <h1>File Check Results for SI=<span t:render="storage_index" /></h1>
<div> <div>
<span n:render="summary" /> <span t:render="summary" />
</div> </div>
<div n:render="repair" /> <div t:render="repair" />
<div n:render="results" /> <div t:render="results" />
<div n:render="return" /> <div t:render="return_to" />
</body> </body>
</html> </html>