Mercurial > p > roundup > code
diff website/issues/extensions/templating.py @ 6507:bc95f7431efb
Remove miscommited issue directory; AboutPage fix; aria for drag/drop
Removed issues/extensions, should not have been committed. Was deployed
testing directory for website/issues.
Added missing list() for dict keys in AboutPage.
Added aria-labeledby to drag and drop textarea to improve
accessibility.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 08 Oct 2021 00:35:09 -0400 |
| parents | a35d4e0c4e07 |
| children | 42ff671d7f41 |
line wrap: on
line diff
--- a/website/issues/extensions/templating.py Wed Oct 06 15:50:03 2021 -0400 +++ b/website/issues/extensions/templating.py Fri Oct 08 00:35:09 2021 -0400 @@ -111,7 +111,7 @@ info.append("<h2>Environment Variables</h2>") info.append("<pre>") # include pre to prevent wrapping of values - for key in db._client.env.keys(): + for key in list(db._client.env.keys()): info.append("%s=%s"%(key,db._client.env[key]) + "<br>") info.append("</pre>") return "\n".join(info)
