mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-04-27 12:33:47 +03:00
16 lines
328 B
HTML
Executable File
16 lines
328 B
HTML
Executable File
{% extends 'graphene/base.html' %}
|
|
|
|
{% load static %}
|
|
|
|
{% block title %}set a JWT token in the headers (HTTP_AUTHORIZATION){% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
{% endblock %}
|