diff --git a/graphene_django/templates/graphene/graphiql.html b/graphene_django/templates/graphene/graphiql.html
index ddff8fc..52421e8 100644
--- a/graphene_django/templates/graphene/graphiql.html
+++ b/graphene_django/templates/graphene/graphiql.html
@@ -21,6 +21,10 @@ add "&raw" to the end of the URL within a browser.
integrity="{{graphiql_css_sri}}"
rel="stylesheet"
crossorigin="anonymous" />
+
diff --git a/graphene_django/views.py b/graphene_django/views.py
index 377b75d..b16a12b 100644
--- a/graphene_django/views.py
+++ b/graphene_django/views.py
@@ -78,6 +78,9 @@ class GraphQLView(View):
graphiql_plugin_explorer_version = "0.1.15"
graphiql_plugin_explorer_sri = "sha256-3hUuhBXdXlfCj6RTeEkJFtEh/kUG+TCDASFpFPLrzvE="
+ graphiql_plugin_explorer_css_sri = (
+ "sha256-fA0LPUlukMNR6L4SPSeFqDTYav8QdWjQ2nr559Zln1U="
+ )
schema = None
graphiql = False