Reformat with djlint
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Michel Roux 2022-09-07 17:57:09 +00:00
parent 4125c20cd8
commit bf2918795f
4 changed files with 16 additions and 16 deletions

View File

@ -6,10 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<title>
{% block title %}
{% endblock title %}
</title>
<title>{{ client.user.display_name }} - {{ _('The discord scheduled event calendar generator') }}</title>
<link rel="stylesheet"
href="{{ url_for('static', filename='css/font-awesome.min.css') }}"/>
<link rel="stylesheet"
@ -17,10 +14,10 @@
</head>
<body>
<img src="{{ url_for('static', filename='img/Discord-Logo+Wordmark-White.svg') }}"
id="logo"
height="36"
width="130"
alt="{{ _('Discord Logo') }}"/>
id="logo"
height="36"
width="130"
alt="{{ _('Discord Logo') }}"/>
<div id="content">
{% block content %}
{% endblock content %}

View File

@ -8,9 +8,7 @@
width="173"/>
</div>
<hr />
<span id="details">
{{ error }}
</span>
<span id="details">{{ error }}</span>
</div>
<div id="buttons">
<a href="{{ url_for('index') }}">

View File

@ -3,7 +3,10 @@
<form action="" method="get">
<div id="box">
<div id="avatars">
<img src="{{ client.user.display_avatar }}" alt="{{ _('Bot Logo') }}" width="80" height="80" />
<img src="{{ client.user.display_avatar }}"
alt="{{ _('Bot Logo') }}"
width="80"
height="80"/>
</div>
<h1>{{ client.user.display_name }}</h1>
<h2>{{ _('The discord scheduled event calendar generator') }}</h2>
@ -22,11 +25,12 @@
<hr />
<h3>{{ _('Choose a server:') }}</h3>
<select name="guild">
<option>Choose a server:</option>
{% for guild in client.guilds %}
<option value="{{ guild.id }}">
{{ guild.name }}
<option>
</option>
{% for guild in client.guilds %}
<option value="{{ guild.id }}">
{{ guild.name }}
</option>
{% endfor %}
</select>
</div>

View File

@ -0,0 +1 @@