Compare commits
2 Commits
v1.2.17
...
feature/re
Author | SHA1 | Date | |
---|---|---|---|
99bf2fa1f4 | |||
cd4db22e72 |
@@ -11,12 +11,6 @@ und dieses Projekt adhäriert zu [Semantic Versioning](https://semver.org/lang/d
|
||||
- Export-Button in der Benutzeroberfläche
|
||||
- Automatische Formatierung der CSV-Datei mit allen relevanten Kundendaten
|
||||
|
||||
## [1.2.17] - 2024-03-19
|
||||
### Geändert
|
||||
- Optimierte Datenbankverbindungen für bessere Thread-Sicherheit
|
||||
- Verbesserte Datenbankindizes für schnellere Suchen
|
||||
- Verbesserte Fehlerbehandlung bei Datenbankoperationen
|
||||
|
||||
## [1.2.16] - 2024-03-21
|
||||
### Geändert
|
||||
- Verbesserte Suchfunktion: Highlighting für allgemeine Suche in allen Feldern
|
||||
|
2
app.py
2
app.py
@@ -193,7 +193,7 @@ def login():
|
||||
|
||||
if request.method == 'POST':
|
||||
password = request.form.get('password')
|
||||
if password == STATIC_PASSWORD:
|
||||
if password == os.environ.get('LOGIN_PASSWORD'):
|
||||
session['logged_in'] = True
|
||||
logger.info("Erfolgreicher Login")
|
||||
return redirect(url_for('index'))
|
||||
|
@@ -336,7 +336,10 @@ function displayResults(results) {
|
||||
|
||||
function clearInput(inputId) {
|
||||
document.getElementById(inputId).value = '';
|
||||
searchCustomers();
|
||||
document.getElementById('results').innerHTML = '';
|
||||
document.getElementById('result-count').textContent = '';
|
||||
document.getElementById('exportButton').style.display = 'none';
|
||||
lastResults = [];
|
||||
}
|
||||
|
||||
async function searchCustomers() {
|
||||
|
Reference in New Issue
Block a user