mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-23 17:26:26 +01:00
Added the ability to add online search to groupe
This commit is contained in:
parent
340b6541ca
commit
2ed8c92533
@ -54,6 +54,11 @@
|
||||
{% for album in user.albums %}
|
||||
<option value="{{ album['uuid'] }}">{{ album["name"] }}</option>
|
||||
{% endfor %}
|
||||
{% for groupe in user.get_groupes() %}
|
||||
{% for album in groupe.get_albums() %}
|
||||
<option value="{{ album['uuid'] }}">{{ groupe.name }}/{{ album["name"] }}</option>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
</select>
|
||||
<input type="hidden" value="{{ partition['uuid'] }}" name="partition-uuid">
|
||||
<input type="hidden" value="online_search" name="partition-type">
|
||||
|
Loading…
Reference in New Issue
Block a user