diff options
author | Dylan Garrett <dylan.garrett@gmail.com> | 2021-06-09 20:40:53 -0700 |
---|---|---|
committer | Dylan Garrett <dylan.garrett@gmail.com> | 2021-06-09 20:40:53 -0700 |
commit | 3df6eace945cc07bc02cdeff3dbad5552954d279 (patch) | |
tree | e0ce51ea9af98fa17ec2bfb86d19d07a17132555 | |
parent | f33ee09ceff303cf26ca22f24f837f00d4963b76 (diff) | |
download | roka-3df6eace945cc07bc02cdeff3dbad5552954d279.tar.gz roka-3df6eace945cc07bc02cdeff3dbad5552954d279.zip |
Don't need to escape author
-rw-r--r-- | templates/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html index dc0eddd..a30577e 100644 --- a/templates/index.html +++ b/templates/index.html @@ -36,7 +36,7 @@ {% for b, v in books.items() %} <tr> <td><a href="?a={{ b }}">{{ v['title']|escape }}</a></td> - <td>{{ v['author']|escape }}</td> + <td>{{ v['author'] }}</td> <td>{{ v['files']|length }}</td> <td>{{ v['duration_str'] }}</td> <td>{{ v['size_str'] }}</td> |