Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -153,8 +153,8 @@ def live_clock():
|
|
| 153 |
const options = {
|
| 154 |
timeZone: 'Australia/Melbourne',
|
| 155 |
year: 'numeric',
|
| 156 |
-
month: '
|
| 157 |
-
day: '
|
| 158 |
hour: '2-digit',
|
| 159 |
minute: '2-digit',
|
| 160 |
second: '2-digit',
|
|
@@ -249,6 +249,7 @@ with tabs[0]:
|
|
| 249 |
annotated_text = st.text_input("Annotated Text", help="The text quoted or paraphrased from the source", placeholder="e.g., Thermal comfort thresholds...")
|
| 250 |
|
| 251 |
# Live date and time display
|
|
|
|
| 252 |
st.markdown(live_clock(), unsafe_allow_html=True)
|
| 253 |
|
| 254 |
# Get current date and time in Melbourne timezone for hash generation
|
|
|
|
| 153 |
const options = {
|
| 154 |
timeZone: 'Australia/Melbourne',
|
| 155 |
year: 'numeric',
|
| 156 |
+
month: '2-digit',
|
| 157 |
+
day: '2-digit',
|
| 158 |
hour: '2-digit',
|
| 159 |
minute: '2-digit',
|
| 160 |
second: '2-digit',
|
|
|
|
| 249 |
annotated_text = st.text_input("Annotated Text", help="The text quoted or paraphrased from the source", placeholder="e.g., Thermal comfort thresholds...")
|
| 250 |
|
| 251 |
# Live date and time display
|
| 252 |
+
st.markdown("### Current Date and Time")
|
| 253 |
st.markdown(live_clock(), unsafe_allow_html=True)
|
| 254 |
|
| 255 |
# Get current date and time in Melbourne timezone for hash generation
|