forked from s3lph/matemat
s3lph
66f23f5dda
feat: list all users and products in a table in the settings feat: add back buttons to signup, password login and touchkey login pages feat: if the tabfocus webextension is installed, use it to focus the tab when a barcode is scanned
118 lines
4.5 KiB
HTML
118 lines
4.5 KiB
HTML
<section id="admin-restricted-newuser">
|
|
<h2>Users</h2>
|
|
|
|
<form id="admin-newuser-form" method="post" action="/admin?adminchange=newuser" accept-charset="UTF-8">
|
|
<table border="1">
|
|
<tr>
|
|
<th>Username</th>
|
|
<th>E-Mail (optional)</th>
|
|
<th>Password</th>
|
|
<th>Member</th>
|
|
<th>Admin</th>
|
|
<th>Logout after purchase</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
<tr>
|
|
<td><input id="admin-newuser-username" type="text" name="username" placeholder="New username"></td>
|
|
<td><input id="admin-newuser-email" type="text" name="email" placeholder="New e-mail"></td>
|
|
<td><input id="admin-newuser-password" type="password" name="password" placeholder="New password"></td>
|
|
<td><input id="admin-newuser-ismember" type="checkbox" name="ismember"></td>
|
|
<td><input id="admin-newuser-isadmin" type="checkbox" name="isadmin"></td>
|
|
<td><input id="admin-newuser-logout-after-purchase" type="checkbox" name="logout_after_purchase"></td>
|
|
<td><input type="submit" value="Create User"></td>
|
|
</tr>
|
|
{% for user in users %}
|
|
<tr>
|
|
<td>{{ user.name }}</td>
|
|
<td>{{ '✓' if user.email else '✗' }}</td>
|
|
<td>••••••••</td>
|
|
<td>{{ '✓' if user.is_member else '✗' }}</td>
|
|
<td>{{ '✓' if user.is_admin else '✗' }}</td>
|
|
<td>{{ '✓' if user.logout_after_purchase else '✗' }}</td>
|
|
<td>
|
|
<a style="text-decoration: none; color: #0000ff;" href="/moduser?userid={{ user.id }}">🖊</a>
|
|
<a style="text-decoration: none; color: #ff0000;" href="/moduser?userid={{ user.id }}&change=del">🗑</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</form>
|
|
</section>
|
|
|
|
<section id="admin-restricted-newproduct">
|
|
<h2>Products</h2>
|
|
|
|
<form id="admin-newproduct-form" method="post" action="/admin?adminchange=newproduct" enctype="multipart/form-data" accept-charset="UTF-8">
|
|
<table border="1">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>EAN code</th>
|
|
<th>Member price</th>
|
|
<th>Non-member price</th>
|
|
<th>Custom price</th>
|
|
<th>Stockable</th>
|
|
<th>Image</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
<tr>
|
|
<td><input id="admin-newproduct-name" type="text" name="name" placeholder="New product name"></td>
|
|
<td><input id="admin-newproduct-ean" type="text" name="ean" placeholder="Scan to insert EAN"></td>
|
|
<td>CHF <input id="admin-newproduct-price-member" type="number" step="0.01" name="pricemember" value="0"></td>
|
|
<td>CHF <input id="admin-newproduct-price-non-member" type="number" step="0.01" name="pricenonmember" value="0"></td>
|
|
<td><input id="admin-custom-price" type="checkbox" name="custom_price"></td>
|
|
<td><input id="admin-newproduct-stockable" type="checkbox" name="stockable" checked="checked"></td>
|
|
<td><input id="admin-newproduct-image" name="image" type="file" accept="image/*"></td>
|
|
<td><input type="submit" value="Create Product"></td>
|
|
</tr>
|
|
{% for product in products %}
|
|
<tr>
|
|
<td>{{ product.name }}</td>
|
|
<td>{{ product.ean or '' }}</td>
|
|
<td>{{ product.price_member | chf }}</td>
|
|
<td>{{ product.price_non_member | chf }}</td>
|
|
<td>{{ '✓' if product.custom_price else '✗' }}</td>
|
|
<td>{{ '✓' if product.stockable else '✗' }}</td>
|
|
<td><img style="height: 2em;" src="/static/upload/thumbnails/products/{{ product.id }}.png?cacheBuster={{ now }}" alt="Picture of {{ product.name }}" draggable="false"></td>
|
|
<td>
|
|
<a style="text-decoration: none; color: #0000ff;" href="/modproduct?productid={{ product.id }}">🖊</a>
|
|
<a style="text-decoration: none; color: #ff0000;" href="/modproduct?productid={{ product.id }}&change=del">🗑</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</form>
|
|
</section>
|
|
|
|
<section id="admin-restricted-default-images">
|
|
<h2>Set default images</h2>
|
|
|
|
<form id="admin-default-images-form" method="post" action="/admin?adminchange=defaultimg" enctype="multipart/form-data" accept-charset="UTF-8">
|
|
<table>
|
|
<tr>
|
|
<th>Default user avatar</th>
|
|
<th>Default product image</th>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<label for="admin-default-images-user">
|
|
<img src="/static/upload/thumbnails/users/default.png" alt="Default user avatar" />
|
|
</label>
|
|
</td>
|
|
<td>
|
|
<label for="admin-default-images-product">
|
|
<img src="/static/upload/thumbnails/products/default.png" alt="Default product avatar" />
|
|
</label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input id="admin-default-images-user" type="file" name="users" accept="image/*" />
|
|
</td>
|
|
<td>
|
|
<input id="admin-default-images-product" type="file" name="products" accept="image/*" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<input type="submit" value="Save changes">
|
|
</form>
|
|
</section>
|