mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-04-27 12:33:47 +03:00
13 lines
319 B
HTML
Executable File
13 lines
319 B
HTML
Executable File
{% extends 'graphene/base.html' %}
|
|
|
|
{% load static %}
|
|
|
|
{% block title %}-- Local graphiQL --{% endblock %}
|
|
{% block additional_headers %}{{ auth_header }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="editor"></div>
|
|
{% csrf_token %}
|
|
<script src="{% static 'graphene_django/graphiql.js' %}"></script>
|
|
{% endblock %}
|