mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 18:19:20 +02:00
See #236: front-end to manage users default permissions
This commit is contained in:
parent
7ad19a3fbb
commit
67aef15aca
2 changed files with 10 additions and 2 deletions
|
@ -50,6 +50,13 @@
|
|||
<label :for="setting.identifier">{{ setting.verbose_name }}</label>
|
||||
<p v-if="setting.help_text">{{ setting.help_text }}</p>
|
||||
</div>
|
||||
<select
|
||||
v-else-if="setting.field.class === 'MultipleChoiceField'"
|
||||
v-model="values[setting.identifier]"
|
||||
multiple
|
||||
class="ui search selection dropdown">
|
||||
<option v-for="v in setting.additional_data.choices" :value="v[0]">{{ v[1] }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<button
|
||||
type="submit"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue