chore: citizen science
Browse files- app/mode_advanced.py +5 -1
- app/mode_simple.py +5 -1
app/mode_advanced.py
CHANGED
@@ -55,7 +55,11 @@ with gr.Blocks(theme="shivi/calm_seafoam") as advanced:
|
|
55 |
"# Welcome to Digiwild - Advanced Reporting", label="Title"
|
56 |
)
|
57 |
description = gr.Markdown(
|
58 |
-
"
|
|
|
|
|
|
|
|
|
59 |
label="description",
|
60 |
)
|
61 |
|
|
|
55 |
"# Welcome to Digiwild - Advanced Reporting", label="Title"
|
56 |
)
|
57 |
description = gr.Markdown(
|
58 |
+
"""
|
59 |
+
## You are in **advanced** mode. If you are not a field professional, we recommend you switch to the **simple** reporting mode.
|
60 |
+
|
61 |
+
## Please record your wildlife observations here !
|
62 |
+
""",
|
63 |
label="description",
|
64 |
)
|
65 |
|
app/mode_simple.py
CHANGED
@@ -46,7 +46,11 @@ with gr.Blocks(theme="shivi/calm_seafoam") as simple:
|
|
46 |
with gr.Column(scale=1):
|
47 |
title = gr.Markdown("# Welcome to Digiwild", label="Title")
|
48 |
description = gr.Markdown(
|
49 |
-
"
|
|
|
|
|
|
|
|
|
50 |
label="description",
|
51 |
)
|
52 |
|
|
|
46 |
with gr.Column(scale=1):
|
47 |
title = gr.Markdown("# Welcome to Digiwild", label="Title")
|
48 |
description = gr.Markdown(
|
49 |
+
"""
|
50 |
+
## A **Citizen-Science Reporting System**, for professionals and amateurs alike.
|
51 |
+
|
52 |
+
## Please record your wildlife observations here !
|
53 |
+
""",
|
54 |
label="description",
|
55 |
)
|
56 |
|