Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -722,7 +722,7 @@ def show_contacts():
|
|
722 |
try:
|
723 |
conn = sqlite3.connect('data.db')
|
724 |
cursor = conn.cursor()
|
725 |
-
cursor.execute('SELECT name, phone,
|
726 |
contacts = cursor.fetchall()
|
727 |
conn.close()
|
728 |
|
@@ -754,8 +754,8 @@ def show_contacts():
|
|
754 |
<table>
|
755 |
<tr>
|
756 |
<th>Name</th>
|
757 |
-
<th>Phone</th>
|
758 |
<th>Email</th>
|
|
|
759 |
<th>pr1</th>
|
760 |
<th>pr2</th>
|
761 |
<th>pr3</th>
|
@@ -782,7 +782,7 @@ def show_contacts():
|
|
782 |
return render_template_string(html, contacts=contacts)
|
783 |
except Exception as e:
|
784 |
print(f"Error showing contacts: {e}")
|
785 |
-
return "
|
786 |
|
787 |
|
788 |
|
|
|
722 |
try:
|
723 |
conn = sqlite3.connect('data.db')
|
724 |
cursor = conn.cursor()
|
725 |
+
cursor.execute('SELECT name, email, phone, pr1, pr2, pr3, pr4, pr5 FROM contacts')
|
726 |
contacts = cursor.fetchall()
|
727 |
conn.close()
|
728 |
|
|
|
754 |
<table>
|
755 |
<tr>
|
756 |
<th>Name</th>
|
|
|
757 |
<th>Email</th>
|
758 |
+
<th>Phone</th>
|
759 |
<th>pr1</th>
|
760 |
<th>pr2</th>
|
761 |
<th>pr3</th>
|
|
|
782 |
return render_template_string(html, contacts=contacts)
|
783 |
except Exception as e:
|
784 |
print(f"Error showing contacts: {e}")
|
785 |
+
return "Database error. Please try again later.", 500
|
786 |
|
787 |
|
788 |
|