Middleware and templatetag for Django to utilize HTTP/2 push for assets included in a Django template. The
middleware injects a Link header in each response if there are files to be pushed to the client. All files in the
template which are suitable for HTTP/2 push should be included with the staticpush templatetag instead of the
vanilla static templatetag. The former simply augments the later and registers the resulting static URL with the
middleware.
This package currently supports Apache2 webservers with mod_http2 enabled, as the actual HTTP/2 push is offloaded to the
webserver.