Fix line endings

This commit is contained in:
Disassembler 2020-04-04 17:59:45 +02:00
parent 18724b4412
commit 43f55e5917
No known key found for this signature in database
GPG Key ID: 524BD33A0EE29499
2 changed files with 17 additions and 17 deletions

View File

@ -1,4 +1,4 @@
/var/log/vmmgr.log {
missingok
copytruncate
}
/var/log/vmmgr.log {
missingok
copytruncate
}

View File

@ -1,13 +1,13 @@
{% for app, data in app_data.items() %}
<tr data-app="{{ app }}">
<td>{{ data['title'] }}</td>
<td class="center"><input type="checkbox" class="app-visible"{% if not data['installed'] %} disabled{% elif data['visible'] %} checked{% endif %}></td>
<td class="center"><input type="checkbox" class="app-autostart"{% if not data['installed'] %} disabled{% elif data['autostarted'] %} checked{% endif %}></td>
{% if not data['actions'] %}
<td colspan="2">{{ data['status']|safe }}</td>
{% else %}
<td>{{ data['status']|safe }}</td>
<td>{{ data['actions']|safe }}</td>
{% endif %}
</tr>
{% endfor %}
{% for app, data in app_data.items() %}
<tr data-app="{{ app }}">
<td>{{ data['title'] }}</td>
<td class="center"><input type="checkbox" class="app-visible"{% if not data['installed'] %} disabled{% elif data['visible'] %} checked{% endif %}></td>
<td class="center"><input type="checkbox" class="app-autostart"{% if not data['installed'] %} disabled{% elif data['autostarted'] %} checked{% endif %}></td>
{% if not data['actions'] %}
<td colspan="2">{{ data['status']|safe }}</td>
{% else %}
<td>{{ data['status']|safe }}</td>
<td>{{ data['actions']|safe }}</td>
{% endif %}
</tr>
{% endfor %}