mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-03-13 06:35:20 +01:00
Compare commits
2 Commits
90c70a8d42
...
f6690f2013
Author | SHA1 | Date | |
---|---|---|---|
f6690f2013 | |||
178a540791 |
@ -10,7 +10,7 @@ Serveur web (basé sur Flask) pour gérer sa collection de partitions musicales
|
||||
- Thème sombre
|
||||
- dashboard administrateur: gestion de tous les albums, partitions et utilisateurs
|
||||
- [CLI](https://github.com/partitioncloud/partitioncloud-cli) uniquement à des fins de synchronisation. Il serait bon d'ajouter une BDD locale avec les UUIDs des partitions
|
||||
- ~~Pas de Javascript~~ Complètement fonctionnel sans JavaScript, cela vient juste ajouter des [toutes petites améliorations](partitioncloud/static/main.js)
|
||||
- ~~Pas de Javascript~~ Complètement fonctionnel sans JavaScript, cela vient juste ajouter des [toutes petites améliorations](partitioncloud/static/scripts)
|
||||
|
||||
## Points à noter
|
||||
- Les partitions ajoutées sont accessibles à tous les utilisateurs depuis la recherche même si ils ne sont pas dans un album leur y donnant accès, pour limiter la redondance
|
||||
|
@ -53,7 +53,7 @@
|
||||
{% endif %}
|
||||
{% if not_participant %}
|
||||
<a href="/albums/{{ album.uuid }}/join">{{ _("Join") }}</a>
|
||||
{% elif album.users | length > 1 %}
|
||||
{% elif g.user and not not_participant %}
|
||||
<a href="/albums/{{ album.uuid }}/quit">{{ _("Quit") }}</a>
|
||||
{% endif %}
|
||||
<a href="#share">{{ _("Share") }}</a>
|
||||
|
@ -45,7 +45,7 @@
|
||||
<div class="dropdown-content dp1">
|
||||
{% if not_participant %}
|
||||
<a href="/groupe/{{ groupe.uuid }}/join">{{ _("Join") }}</a>
|
||||
{% elif groupe.users | length > 1 and g.user %}
|
||||
{% elif g.user and not not_participant %}
|
||||
<a href="/groupe/{{ groupe.uuid }}/quit">{{ _("Quit") }}</a>
|
||||
{% endif %}
|
||||
<a href="#share">{{ _("Share") }}</a>
|
||||
|
Loading…
x
Reference in New Issue
Block a user