Michael Rabinovich commited on
Commit ·
a58058c
1
Parent(s): 9e84592
app: drop history-narrative prose from Submit tab
Browse filesThe Submit tab carried a sentence explaining why there's no form
to fill in ("All five fields come from meta.json inside the zip,
no separate form to fill in."). To a launch visitor that explains
an absence that was never there; the right thing is to describe
the contract as it stands, not to narrate a removal.
Cut the sentence; keep the one useful half as a "Consent." line
documenting that agree_to_publish: true in meta.json is the
consent gate.
app.py
CHANGED
|
@@ -74,9 +74,8 @@ stack, put it here or in `notes`.
|
|
| 74 |
and stripped to a single line. Shown in the per-submission detail view,
|
| 75 |
not in the main leaderboard table.
|
| 76 |
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
your consent to publish on the public leaderboard.
|
| 80 |
"""
|
| 81 |
)
|
| 82 |
zip_in = gr.File(label="Submission ZIP", file_types=[".zip"])
|
|
|
|
| 74 |
and stripped to a single line. Shown in the per-submission detail view,
|
| 75 |
not in the main leaderboard table.
|
| 76 |
|
| 77 |
+
**Consent.** `"agree_to_publish": true` in `meta.json` is your consent
|
| 78 |
+
to publish the resulting row on the public leaderboard.
|
|
|
|
| 79 |
"""
|
| 80 |
)
|
| 81 |
zip_in = gr.File(label="Submission ZIP", file_types=[".zip"])
|