Commit 3496d8ed4efe1a2eef2c4da4d92f386080f85036

Authored by Etienne Pallier
1 parent 0a1f1d83
Exists in dev

added comments

Showing 2 changed files with 2 additions and 2 deletions   Show diff stats
pyros.py
... ... @@ -809,6 +809,7 @@ def initdb():
809 809 return True
810 810  
811 811  
  812 +# Install Observatory dependencies (from config DEPENDENCY/links section) : guitastro devices...
812 813 @pyros_launcher.command(help="Install dependencies from Observatory config DEPENDENCY section")
813 814 # @global_test_options
814 815 @click.option('--observatory', '-o', help='the Observatory name to be used')
... ...
src/core/pyros_django/user_mgmt/forms.py
... ... @@ -9,7 +9,6 @@ from django.contrib.auth.forms import PasswordResetForm
9 9 from user_mgmt.models import Country, Institute, PyrosUser, UserLevel
10 10  
11 11  
12   -
13 12 class UserForm(forms.ModelForm):
14 13 class Meta:
15 14 model = PyrosUser
... ... @@ -19,7 +18,7 @@ class UserForm(forms.ModelForm):
19 18 'email',
20 19 'country',
21 20 'institute',
22   - #'user_level',
  21 + # user_level',
23 22 'desc',
24 23 'tel',
25 24 'address',
... ...