Fix admin route name mismatch in user_new and user_created templates

Templates referenced 'admin_user_new' (stegasoo convention) but the
soosef route is named 'admin_new_user'. Caused 500 error when clicking
"Add User" from admin panel.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Aaron D. Lee 2026-03-31 22:53:11 -04:00
parent 5b1ac0b741
commit fb2e036e66
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@
</div>
<div class="d-grid gap-2">
<a href="{{ url_for('admin_user_new') }}" class="btn btn-primary">
<a href="{{ url_for('admin_new_user') }}" class="btn btn-primary">
<i class="bi bi-person-plus me-2"></i>Add Another User
</a>
<a href="{{ url_for('admin_users') }}" class="btn btn-outline-secondary">

View File

@ -131,7 +131,7 @@ form.addEventListener('submit', async function(e) {
const formData = new FormData(form);
try {
const response = await fetch('{{ url_for("admin_user_new") }}', {
const response = await fetch('{{ url_for("admin_new_user") }}', {
method: 'POST',
body: formData,
headers: { 'X-Requested-With': 'XMLHttpRequest' }