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
9 lines
199 B
HTML
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 %}
|