v1.5: Integrated optional category feature, i18n stabilization, and documentation update

This commit is contained in:
leeyj
2026-04-16 15:42:02 +09:00
parent df8ae62b0e
commit aef0179c56
47 changed files with 1699 additions and 544 deletions
+3 -2
View File
@@ -1,4 +1,4 @@
from flask import Blueprint, render_template, redirect, url_for, session, current_app # type: ignore
from flask import Blueprint, render_template, redirect, url_for, session # type: ignore
from ..auth import login_required
import os
import json
@@ -22,6 +22,7 @@ def login_page():
try:
with open(config_path, 'r', encoding='utf-8') as f:
lang = json.load(f).get('lang', 'ko')
except: pass
except Exception:
pass
return render_template('login.html', lang=lang)