From 3496d8ed4efe1a2eef2c4da4d92f386080f85036 Mon Sep 17 00:00:00 2001 From: Etienne Pallier Date: Sat, 14 Oct 2023 15:47:43 +0200 Subject: [PATCH] added comments --- pyros.py | 1 + src/core/pyros_django/user_mgmt/forms.py | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyros.py b/pyros.py index bdc7d60..78ddcde 100755 --- a/pyros.py +++ b/pyros.py @@ -809,6 +809,7 @@ def initdb(): return True +# Install Observatory dependencies (from config DEPENDENCY/links section) : guitastro devices... @pyros_launcher.command(help="Install dependencies from Observatory config DEPENDENCY section") # @global_test_options @click.option('--observatory', '-o', help='the Observatory name to be used') diff --git a/src/core/pyros_django/user_mgmt/forms.py b/src/core/pyros_django/user_mgmt/forms.py index a29652c..de3a2e7 100644 --- a/src/core/pyros_django/user_mgmt/forms.py +++ b/src/core/pyros_django/user_mgmt/forms.py @@ -9,7 +9,6 @@ from django.contrib.auth.forms import PasswordResetForm from user_mgmt.models import Country, Institute, PyrosUser, UserLevel - class UserForm(forms.ModelForm): class Meta: model = PyrosUser @@ -19,7 +18,7 @@ class UserForm(forms.ModelForm): 'email', 'country', 'institute', - #'user_level', + # user_level', 'desc', 'tel', 'address', -- libgit2 0.21.2