Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
costero-e committed Nov 8, 2023
1 parent c814a40 commit d981351
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion permissions/permissions-ui/templates/controlled.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
{% endfor %}
</select>
<button id="btnAdd2">Add</button>
<label for="list">Public Datasets List:</label>
<label for="list">Controlled Datasets List:</label>
<select id="list" name="list" multiple>
{% for item in bash_out %}
<option value="{{item}}" selected="selected">{{item}}</option>
Expand Down
2 changes: 1 addition & 1 deletion permissions/permissions-ui/templates/registered.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
{% endfor %}
</select>
<button id="btnAdd2">Add</button>
<label for="list">Public Datasets List:</label>
<label for="list">{{user}} Datasets List:</label>
<select id="list" name="list" multiple>
{% for rdataset in registered_datasets %}
<option value="{{rdataset}}" selected="selected">{{rdataset}}</option>
Expand Down
2 changes: 1 addition & 1 deletion permissions/permissions-ui/web/forms.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django import forms

class BamForm(forms.Form):
choices = [("PUBLIC", "PUBLIC"), ("REGISTERED", "REGISTERED"), ("CONTROLLED", "CONTROLLED")]
choices = [("PUBLIC", "PUBLIC"), ("CONTROLLED", "CONTROLLED"), ("REGISTERED", "REGISTERED")]
Datasets = forms.ChoiceField(choices=choices, help_text="<span class='hovertext' data-hover='Choose what type of datasets you want to manage'>Datasets type:</span>", label="")

0 comments on commit d981351

Please sign in to comment.