oedb-backend/frontend/src/app/pages/home/menu/menu.html

101 lines
2.7 KiB
HTML
Raw Normal View History

2025-10-02 23:19:15 +02:00
<menu>
OpenEventDatabase
<nav class="nav">
<a routerLink="/" class="link">Accueil</a>
<a routerLink="/community-upcoming" class="link">Community à venir</a>
<a routerLink="/events-docs" class="link">Docs événements</a>
</nav>
<a href="/demo/stats">stats</a>
<a href="https://source.cipherbliss.com/tykayn/oedb-backend">sources</a>
(editor)
<!--
2025-10-02 23:19:15 +02:00
<div id="editor_form">
2025-10-04 23:36:37 +02:00
<div id="search_input">
2025-10-02 23:19:15 +02:00
<input type="text" value="" placeholder="Rechercher une catégorie d'évènement">
</div>
2025-10-04 19:26:00 +02:00
<div id="what_categories">
2025-10-02 23:19:15 +02:00
@for (oedbc of oedb_what_categories; track $index) {
<div class="category">
<div class="emoji">
{{ oedbc.emoji }}
</div>
<div class="label">
{{ oedbc.label }}
</div>
2025-10-07 14:09:53 +02:00
<div class="what">
{{ whats[$index] }}
</div>
2025-10-02 23:19:15 +02:00
</div>
}
2025-10-04 12:46:25 +02:00
</div> -->
2025-10-04 19:26:00 +02:00
<!--
2025-10-02 23:19:15 +02:00
<hr>
(bouton de template pour ne pas remplir le formulaire)
<hr>
(reste optionnel du formulaire)
2025-10-04 19:26:00 +02:00
<label for="where">Nom</label>
2025-10-02 23:19:15 +02:00
<input type="text" name="name">
<label for="where">Description</label>
<input type="text" name="description">
<hr>
<label for="where">Where</label>
<input type="text" name="where">
<label for="what:series">What série</label>
<input type="text" name="what:series">
<label for="what:series">Wikidata</label>
<input type="text" name="wikidata">
<hr>
<label for="lat">Latitude</label>
<input type="text" name="lat">
<label for="lat">Longitude</label>
<input type="text" name="lon">
<select name="featureType" id="featureType">
<option value="point"></option>
<option value="polyline"></option>
<option value="bbox"></option>
</select>
2025-10-02 23:19:15 +02:00
</div>
2025-10-04 23:36:37 +02:00
-->
2025-10-04 19:26:00 +02:00
<!-- <div id="found_list">
2025-10-02 23:19:15 +02:00
<h2>données</h2>
(liste des éléments trouvés)
<ul>
<li></li>
</ul>
2025-10-03 11:56:55 +02:00
</div>
<div id="actions">
(actions)
2025-10-02 23:19:15 +02:00
<button class="button">exporter</button>
2025-10-03 11:56:55 +02:00
<button class="button">envoyer</button>
<button class="button">créer</button>
<button class="button">supprimer</button>
<button class="button">oui, toujours là</button>
<button class="button">non plus là</button>
<button class="button">pouet pouet!</button>
2025-10-03 14:00:35 +02:00
<hr>
<button class="button" (click)="toggleView()">Basculer carte / tableau</button>
<div class="downloaders">
<button class="button" (click)="downloadGeoJSON()">Télécharger GeoJSON</button>
<button class="button" (click)="downloadCSV()">Télécharger CSV</button>
</div>
2025-10-03 11:56:55 +02:00
</div>
<div id="user_infos">
login OSM:
<a href="https://www.openstreetmap.org/user/tykayn">tykayn</a>
<br>
points de l'utilisateur:
12 points.
2025-10-04 19:26:00 +02:00
</div> -->
2025-10-02 23:19:15 +02:00
</menu>