Files
snek/src/snek/templates/search-user.html
T
retoor 74247d562c feat: add search user page with push notification service worker support
Add SearchUserView with HTML and JSON endpoints, create search-user.html template extending app.html with navigation link, implement push.js for service worker registration and push subscription handling, add service-worker.js for push event display and notification click handling, and fix install prompt event listener registration in app.html
2025-02-08 16:31:03 +00:00

9 lines
199 B
HTML

{% extends "app.html" %}
{% block title %}Search{% endblock %}
{% block main %}
<h1>Search user</h1>
<generic-form class="center" url="/search_user.json"></generic-form>
{% endblock %}