mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-03-14 15:05:21 +01:00
Compare commits
No commits in common. "f6690f2013b2fdedbc8dc20b061aa01134c497f4" and "90c70a8d420021187e55868224c22ef07e83a979" have entirely different histories.
f6690f2013
...
90c70a8d42
@ -10,7 +10,7 @@ Serveur web (basé sur Flask) pour gérer sa collection de partitions musicales
|
|||||||
- Thème sombre
|
- Thème sombre
|
||||||
- dashboard administrateur: gestion de tous les albums, partitions et utilisateurs
|
- 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
|
- [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/scripts)
|
- ~~Pas de Javascript~~ Complètement fonctionnel sans JavaScript, cela vient juste ajouter des [toutes petites améliorations](partitioncloud/static/main.js)
|
||||||
|
|
||||||
## Points à noter
|
## 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
|
- 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 %}
|
{% endif %}
|
||||||
{% if not_participant %}
|
{% if not_participant %}
|
||||||
<a href="/albums/{{ album.uuid }}/join">{{ _("Join") }}</a>
|
<a href="/albums/{{ album.uuid }}/join">{{ _("Join") }}</a>
|
||||||
{% elif g.user and not not_participant %}
|
{% elif album.users | length > 1 %}
|
||||||
<a href="/albums/{{ album.uuid }}/quit">{{ _("Quit") }}</a>
|
<a href="/albums/{{ album.uuid }}/quit">{{ _("Quit") }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a href="#share">{{ _("Share") }}</a>
|
<a href="#share">{{ _("Share") }}</a>
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
<div class="dropdown-content dp1">
|
<div class="dropdown-content dp1">
|
||||||
{% if not_participant %}
|
{% if not_participant %}
|
||||||
<a href="/groupe/{{ groupe.uuid }}/join">{{ _("Join") }}</a>
|
<a href="/groupe/{{ groupe.uuid }}/join">{{ _("Join") }}</a>
|
||||||
{% elif g.user and not not_participant %}
|
{% elif groupe.users | length > 1 and g.user %}
|
||||||
<a href="/groupe/{{ groupe.uuid }}/quit">{{ _("Quit") }}</a>
|
<a href="/groupe/{{ groupe.uuid }}/quit">{{ _("Quit") }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a href="#share">{{ _("Share") }}</a>
|
<a href="#share">{{ _("Share") }}</a>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user