django-webpush icon indicating copy to clipboard operation
django-webpush copied to clipboard

Web Push Notification Package for Django

Results 49 django-webpush issues
Sort by recently updated
recently updated
newest added

When I use custom user model I see webpush_button only with "Subscribe to notifications" when I subscribed I can receive notifications, but button's text does not change

Hello, I'm facing an issue with using Push Notifications. It worked fine until recently when it started showing this error whenever I tried to send a notification from the admin...

Hello friends, i tried to run the example published and this gives an error. ![Captura de Pantalla 2020-10-15 a la(s) 13 39 47](https://user-images.githubusercontent.com/47581949/96178032-042c1280-0eec-11eb-8883-79f0d229709d.png) ¿There are some extra steps i'm losing?

From everything I read, you need to register an eventListener for notificationclick with your service worker in order to be able to open the URL of a notification. The url...

I used the Fix from [chris54](https://github.com/safwanrahman/django-webpush/issues/50#issuecomment-488503200) But now i got a 403 from Google `WebPushException at /admin/webpush/pushinformation/` I try to use the admin comand "Send test message"

How to subscribe every user automatically without clicking the subscribe button and need to disable the button

When page initially loaded, `subscribe` button is shown regardless of user already subscribed or not, This is not user friendly interface. At least we need to check if user already...

i've tried below code to print the payload data but not working ``` if('serviceWorker' in navigator){ navigator.serviceWorker.addEventListener('message', function(event) { consloe.log(event.data); }); } ```

Hi, it is possible to send a notification when I save a new record in my model, I use the django admin, I have tried to use signal to send...

Ive found that you have a Group table which can be appended to with a group name. However there is no post method or view for adding a group. Sure...