This commit is contained in:
cube
2026-03-30 16:48:04 +01:00
parent 9483193ebb
commit db4a7cc46e
3 changed files with 5 additions and 4 deletions

View File

@@ -18,6 +18,8 @@ the other option is to export the entire system to json or zip file. **importing
both are a little janky as they've just been implemented rather quickly to cover the base requirement of being able to migrate the database in some form. **don't rely on them, be sure to keep your own backups**.
**individual member import via zip folder is not currently possible**
# dev set up (windows)
- after cloning, run `py -3 -m venv .venv` in the root directory and then `.venv\Scripts\activate`

View File

@@ -29,7 +29,6 @@ def new():
def import_member_route():
db = get_db()
response=""
data=None
mid=None
if request.method=="POST":
@@ -367,7 +366,7 @@ def admin():
else:
zipf.extract(f)
return "upload zip"
return "<a href='/'>go home</a>"
users = db.execute("SELECT * FROM user").fetchall()

View File

@@ -7,8 +7,8 @@
{% block content %}
<div class="container">
<div class="heading">Backup</div>
<a href="{{ url_for('manage.export_system') }}">Export entire system TEXT ONLY</a><br>
<a href="{{ url_for('manage.export_system_full') }}">Export entire system WITH ATTACHMENTS</a>
<a href="{{ url_for('manage.export_system') }}">Export entire system as JSON</a> (without images)<br>
<a href="{{ url_for('manage.export_system_full') }}">Export entire system as ZIP</a> (with images)
<hr>