diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-10-11 21:47:18 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-10-11 21:47:18 +0300 |
commit | 52c0ab213a6346f3ca5028d13ddbe11aa75aff8d (patch) | |
tree | 92fd953c9a51be31a33b603859ff5afc68cb9c23 /core | |
parent | c3bfd50cf15c646be413b56488ecb0987d79bef5 (diff) | |
download | troggle-52c0ab213a6346f3ca5028d13ddbe11aa75aff8d.tar.gz troggle-52c0ab213a6346f3ca5028d13ddbe11aa75aff8d.tar.bz2 troggle-52c0ab213a6346f3ca5028d13ddbe11aa75aff8d.zip |
Person twiddles
Diffstat (limited to 'core')
-rw-r--r-- | core/views/logbooks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/logbooks.py b/core/views/logbooks.py index f24653c..f26a850 100644 --- a/core/views/logbooks.py +++ b/core/views/logbooks.py @@ -141,7 +141,7 @@ def person(request, first_name='', last_name='', ): this_person = Person.objects.get(first_name = first_name, last_name = last_name) return render(request,'person.html', {'person': this_person, }) except: - message = f'Person not found \'{first_name} {last_name}\' - possibly Scottish? (We have a name parser issue with Mc, Mac etc.)' + message = f'Person not found \'{first_name} {last_name}\' - possibly Scottish? (See our <a href="/handbook/troggle/namesredesign.html">Proposal to fix this</a>)' return render(request, 'errors/generic.html', {'message': message}) |