Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

edit heading help on dataset create wizard forms #458

Merged
merged 1 commit into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/forms/access.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ class Meta:
# Textareas
"access_notes": Textarea(attrs={"rows": 2, "cols": 40}),
}
heading = "Access"
heading_help = "Specify who can access the data, the duration, and any relevant notes. Ensure accuracy for data security."
heading = "Record Access"
heading_help = "Specify who can access the data and for how long. You can define access of each person or describe group of users with access in remarks below."

def __init__(self, *args, **kwargs):
dataset = kwargs.pop("dataset", None)
Expand Down
4 changes: 2 additions & 2 deletions core/forms/data_declaration.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ class DataDeclarationForm(SkipFieldValidationMixin, forms.ModelForm):
class Meta:
model = DataDeclaration
fields = ["title"]
heading = "Data declaration"
heading_help = "Detail your data's origin for clarity. Knowing its provenance enhances its value and trust."
heading = "Add new Data Declaration"
heading_help = "Dataset can have one or many subsets, called data declarations. These can capture data from a particular partner, cohort or data of a particular type. Define first declaration below. More declarations can be added later."

def __init__(self, *args, **kwargs):
self.dataset = kwargs.pop("dataset")
Expand Down
4 changes: 2 additions & 2 deletions core/forms/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ class Meta:
widgets = {
"comments": forms.Textarea(attrs={"rows": 2, "cols": 40}),
}
heading = "Dataset"
heading_help = "Complete the form to enhance dataset quality. Your careful input benefits our community!"
heading = "Add new Dataset"
heading_help = "Provide basic information for the new dataset."

def __init__(self, *args, **kwargs):
dataset = None
Expand Down
4 changes: 2 additions & 2 deletions core/forms/legal_basis.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ class Meta:
model = LegalBasis
fields = "__all__"
exclude = []
heading = "Data Legal Basis"
heading_help = "Define the legal grounds for processing. Ensure your data complies with relevant regulations."
heading = "Add Legal Basis"
heading_help = "Capture the legal grounds for processing of this dataset under GDPR (personal data only). This can require support from your data stewards and data protection officer (DPO)."

def __init__(self, *args, **kwargs):
dataset = kwargs.pop("dataset", None)
Expand Down
4 changes: 2 additions & 2 deletions core/forms/storage_location.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ class Meta:
model = DataLocation
fields = "__all__"
exclude = []
heading = "Add a new storage location"
heading_help = "Specify your data's home. Clear storage details ensure easy retrieval and management."
heading = "Add Storage Location"
heading_help = "Storage details ensure easy data retrieval and management. Record main location of the dataset. More storage locations can be added later."

def __init__(self, *args, **kwargs):
dataset = kwargs.pop("dataset", None)
Expand Down
Loading