Remove trailing whitespace

This commit is contained in:
Jonathan Carter
2025-06-19 19:50:09 +02:00
parent 4b6b6282e1
commit bc0d6b1803
5 changed files with 10 additions and 5 deletions

View File

@@ -86,8 +86,8 @@
<div class="column is-narrow is-primary"> <div class="column is-narrow is-primary">
<div class="box" style="width: 100%; border-radius: 0 0 0px 5px; height: 60px; padding-top: 5px; right: 0px;"> <div class="box" style="width: 100%; border-radius: 0 0 0px 5px; height: 60px; padding-top: 5px; right: 0px;">
<p class="is-tiny"> {{ disk['name'] }} ({{ (disk['size']/1024000000)|round(2) }} GiB) </p> <p class="is-tiny"> {{ disk['name'] }} ({{ (disk['size']/1024000000)|round(2) }} GiB) </p>
<p class="title is-5"><span class="tag is-black">/boot/efi</span> <p class="title is-5"><span class="tag is-black">/dev/{{ disk['name'] }}</span>
<span class="tag is-link">vfat</span> <span class="tag is-link">swap</span>
</p> </p>
</div> </div>
</div> </div>

View File

@@ -9,6 +9,7 @@
<li>Would you like to participate in popcon?</li> <li>Would you like to participate in popcon?</li>
<li>Desktop environment</li> <li>Desktop environment</li>
<li>Server software</li> <li>Server software</li>
<li>Sources.list configuration (include install media?)</li>
</ul> </ul>
</div> </div>

View File

@@ -34,7 +34,7 @@ print(config)
# create our application in flask # create our application in flask
app = Flask(__name__) app = Flask(__name__)
app.config.from_object(__name__) app.config.from_object(__name__)
app.config['CONFIG'] = config app.config['CONFIG'] = config
# Register blueprints here # Register blueprints here
for APP in APPS.split(" "): for APP in APPS.split(" "):

View File

@@ -3,7 +3,7 @@
import webview import webview
LOCATION = "http://10.10.99.22:8080/welcome" LOCATION = "http://10.10.99.22:8080/welcome"
#LOCATION = "http://localhost:8080/welcome" LOCATION = "http://localhost:8080/welcome"
def on_closed(): def on_closed():
""" """

View File

@@ -1,5 +1,9 @@
<!-- Header --> <!-- Header -->
<div id="titlebar" class="pywebview-drag-region" style="padding: 15px; margin: -15px; padding-bottom: 30px;"> <div id="titlebar" style="padding: 15px; margin: -15px; padding-bottom: 30px;">
<!-- drag region class: -->
<!-- <div id="titlebar" class="pywebview-drag-region" style="padding: 15px; margin: -15px; padding-bottom: 30px;"> -->
<button class="button is-link"></button> <button class="button is-link"></button>
<a href="/welcome"><button class="button is-{% if request.path == "/welcome" %}info{% else %}dark{% endif %}">Welcome</button></a> <a href="/welcome"><button class="button is-{% if request.path == "/welcome" %}info{% else %}dark{% endif %}">Welcome</button></a>
<a href="/users"><button class="button is-{% if request.path == "/users" %}info{% else %}dark{% endif %}">Users</button></a> <a href="/users"><button class="button is-{% if request.path == "/users" %}info{% else %}dark{% endif %}">Users</button></a>