mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
Add search to AssistantExperimentMarkView
This commit is contained in:
parent
a5fe640b0d
commit
720f1c1193
2 changed files with 11 additions and 1 deletions
|
@ -375,7 +375,10 @@ class PartView(SecureAdminModelView):
|
|||
"number": {"widget": NumberInput(min=1)},
|
||||
}
|
||||
|
||||
column_searchable_list = ["program.label", "number"]
|
||||
column_searchable_list = [
|
||||
"program.label",
|
||||
"number",
|
||||
]
|
||||
|
||||
def query_modifier(self, query):
|
||||
return query.where(Part.semester == current_user.active_semester)
|
||||
|
|
|
@ -92,6 +92,13 @@ class AssistantExperimentMarkView(SecureAssistantModelView):
|
|||
"admin": "The last admin who edited the mark",
|
||||
}
|
||||
|
||||
column_searchable_list = [
|
||||
"part_student.student.first_name",
|
||||
"part_student.student.last_name",
|
||||
"part_student.student.uni_email",
|
||||
"part_student.student.contact_email",
|
||||
]
|
||||
|
||||
column_editable_list = [
|
||||
"oral_mark",
|
||||
"protocol_mark",
|
||||
|
|
Loading…
Reference in a new issue