<html lang="en">
<head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Euphorik Mumble</title>
- <link rel="stylesheet" type="text/css" href="static/style.css" />
+ <link rel="stylesheet" type="text/css" href="static/style.css">
</head>
<body>
<ul>
{% for user in channel.users %}
<li>{{ user.name }}
- {% if user.self_mute %}<img class="icon" src="static/muted_self.svg" />{% endif %}<!--
- -->{% if user.self_deaf %}<img class="icon" src="static/deafened_self.svg" />{% endif %}
+ {% if user.self_mute %}<img class="icon" src="static/muted_self.svg" alt="User self muted">{% endif %}<!--
+ -->{% if user.self_deaf %}<img class="icon" src="static/deafened_self.svg" alt="User self deafened">{%
+ endif %}
</li>
{% endfor %}
</ul>