Update app.py
Browse files
app.py
CHANGED
@@ -107,7 +107,7 @@ def filter_by_fields(selected_country, selected_city, selected_language, page):
|
|
107 |
if df.empty:
|
108 |
return "<p>No participants match your filters.</p>", page, total_count
|
109 |
|
110 |
-
html = "<h3 style='margin-top:20px;'
|
111 |
html += "<table style='width:100%; border-collapse: collapse;'><tr>"
|
112 |
headers = ["Discord", "Name", "City", "Country", "Looking", "Onlinecheck", "Languages", "Laptop", "Robot", "Skills", "Describe3", "Experience", "Idea"]
|
113 |
for col in headers:
|
@@ -156,7 +156,7 @@ def interface():
|
|
156 |
gr.Markdown("""
|
157 |
# π LeRobot Worldwide Hackathon - Team-Up Dashboard
|
158 |
|
159 |
-
Welcome to the Team-Up
|
160 |
|
161 |
1. **Submit or update** your profile to help others find and contact you via Discord. Required fields are marked with `*`.
|
162 |
2. **Use the filters** (country, city, language) to search for teammates from around the world.
|
@@ -183,7 +183,7 @@ def interface():
|
|
183 |
|
184 |
with gr.Column():
|
185 |
gr.Markdown("""
|
186 |
-
|
187 |
""")
|
188 |
country_filter = gr.Dropdown(label="Filter by Country", choices=["All"] + ALL_COUNTRIES, value="All")
|
189 |
city_filter = gr.Dropdown(label="Filter by City", choices=["All"], value="All")
|
|
|
107 |
if df.empty:
|
108 |
return "<p>No participants match your filters.</p>", page, total_count
|
109 |
|
110 |
+
html = "<h3 style='margin-top:20px;'>π<b> Find your matching Teammates & Register your team <a href='https://forms.gle/gJEMGD4CEA2emhD18' target='_blank'>here</a></b></h3>"
|
111 |
html += "<table style='width:100%; border-collapse: collapse;'><tr>"
|
112 |
headers = ["Discord", "Name", "City", "Country", "Looking", "Onlinecheck", "Languages", "Laptop", "Robot", "Skills", "Describe3", "Experience", "Idea"]
|
113 |
for col in headers:
|
|
|
156 |
gr.Markdown("""
|
157 |
# π LeRobot Worldwide Hackathon - Team-Up Dashboard
|
158 |
|
159 |
+
Welcome to the Team-Up dashboard! Follow these steps:
|
160 |
|
161 |
1. **Submit or update** your profile to help others find and contact you via Discord. Required fields are marked with `*`.
|
162 |
2. **Use the filters** (country, city, language) to search for teammates from around the world.
|
|
|
183 |
|
184 |
with gr.Column():
|
185 |
gr.Markdown("""
|
186 |
+
π―** Use the filters below to find your ideal teammates:**
|
187 |
""")
|
188 |
country_filter = gr.Dropdown(label="Filter by Country", choices=["All"] + ALL_COUNTRIES, value="All")
|
189 |
city_filter = gr.Dropdown(label="Filter by City", choices=["All"], value="All")
|