mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 07:11:52 +00:00
error message for new person pre database reset
This commit is contained in:
parent
b8d5ce2542
commit
1874a755a9
@ -158,7 +158,13 @@ class QMs_jsonListView(ListView):
|
|||||||
def person(request, slug=""):
|
def person(request, slug=""):
|
||||||
"""Now very much simpler with an unambiguous slug
|
"""Now very much simpler with an unambiguous slug
|
||||||
"""
|
"""
|
||||||
this_person = Person.objects.get(slug=slug)
|
try:
|
||||||
|
this_person = Person.objects.get(slug=slug)
|
||||||
|
except:
|
||||||
|
msg = f" Person '{slug=}' not found in database. DATABASE RESET required - ask a nerd."
|
||||||
|
print(msg)
|
||||||
|
return render(request, "errors/generic.html", {"message": msg})
|
||||||
|
|
||||||
current_year = current_expo()
|
current_year = current_expo()
|
||||||
return render(request, "person.html", {"person": this_person, "year": current_year})
|
return render(request, "person.html", {"person": this_person, "year": current_year})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user