
Using the new assetcache module, we replace (almost) all instances of `?v=` cachebusting query parameters in Python and in Jinja templates. The primary exceptions were: user site backgrounds, and some infrequently changed graphics referenced literally from .js files.
17 lines
438 B
HTML
17 lines
438 B
HTML
{% extends "default.html" %}
|
|
|
|
{% block title %}
|
|
<title>{{title}}</title>
|
|
{% endblock %}
|
|
|
|
{% block pagetype %}message-success{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="text-center py-7 py-md-8">
|
|
|
|
<img loading="lazy" src="{{ 'images/ruckus.webp' | asset }}" class="empty-state-img mb-3" alt="success state">
|
|
<div class="font-weight-bold text-muted mb-4">{{title}}</div>
|
|
<p class="text-muted">{{message}}</p>
|
|
|
|
</div>
|
|
{% endblock %}
|