Commit 3496d8ed4efe1a2eef2c4da4d92f386080f85036
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,6 +809,7 @@ def initdb(): | ||
809 | return True | 809 | return True |
810 | 810 | ||
811 | 811 | ||
812 | +# Install Observatory dependencies (from config DEPENDENCY/links section) : guitastro devices... | ||
812 | @pyros_launcher.command(help="Install dependencies from Observatory config DEPENDENCY section") | 813 | @pyros_launcher.command(help="Install dependencies from Observatory config DEPENDENCY section") |
813 | # @global_test_options | 814 | # @global_test_options |
814 | @click.option('--observatory', '-o', help='the Observatory name to be used') | 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,7 +9,6 @@ from django.contrib.auth.forms import PasswordResetForm | ||
9 | from user_mgmt.models import Country, Institute, PyrosUser, UserLevel | 9 | from user_mgmt.models import Country, Institute, PyrosUser, UserLevel |
10 | 10 | ||
11 | 11 | ||
12 | - | ||
13 | class UserForm(forms.ModelForm): | 12 | class UserForm(forms.ModelForm): |
14 | class Meta: | 13 | class Meta: |
15 | model = PyrosUser | 14 | model = PyrosUser |
@@ -19,7 +18,7 @@ class UserForm(forms.ModelForm): | @@ -19,7 +18,7 @@ class UserForm(forms.ModelForm): | ||
19 | 'email', | 18 | 'email', |
20 | 'country', | 19 | 'country', |
21 | 'institute', | 20 | 'institute', |
22 | - #'user_level', | 21 | + # user_level', |
23 | 'desc', | 22 | 'desc', |
24 | 'tel', | 23 | 'tel', |
25 | 'address', | 24 | 'address', |