mirror of
https://github.com/jayofelony/pwnagotchi.git
synced 2025-07-01 18:37:27 -04:00
fix: reload inbox every 15 seconds
This commit is contained in:
@ -5,6 +5,14 @@
|
||||
{{ name }} Inbox
|
||||
{% endblock %}
|
||||
|
||||
{% block script %}
|
||||
$(function() {
|
||||
setTimeout(function(){
|
||||
window.location.reload(true);
|
||||
}, 15000);
|
||||
});
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<ul class="inbox" data-role="listview" data-filter="true" data-filter-placeholder="Search inbox..." data-inset="true">
|
||||
{% for message in inbox.messages %}
|
||||
|
Reference in New Issue
Block a user