Update app.py
Browse files
app.py
CHANGED
|
@@ -1049,12 +1049,8 @@ def main():
|
|
| 1049 |
material_title = material.replace("_", " ").title()
|
| 1050 |
|
| 1051 |
if info['count'] > 0:
|
| 1052 |
-
# Show
|
| 1053 |
-
|
| 1054 |
-
if len(dates_list) <= 5:
|
| 1055 |
-
dates_display = ', '.join(dates_list)
|
| 1056 |
-
else:
|
| 1057 |
-
dates_display = ', '.join(dates_list[:5]) + f' <em>(+{len(dates_list)-5} more)</em>'
|
| 1058 |
|
| 1059 |
card_html = f'''
|
| 1060 |
<div class="quality-card card-warning">
|
|
|
|
| 1049 |
material_title = material.replace("_", " ").title()
|
| 1050 |
|
| 1051 |
if info['count'] > 0:
|
| 1052 |
+
# Show all dates
|
| 1053 |
+
dates_display = ', '.join(info['dates'])
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1054 |
|
| 1055 |
card_html = f'''
|
| 1056 |
<div class="quality-card card-warning">
|