{% extends "djmongo/console/base.html" %}
{% load markdown_deux_tags %}
{% block Content %}
{% load i18n %}
{% if not_empty == True %}
About |
Slug (Name) |
HTTP Method |
Auth |
Endpoint |
Actions |
{% for api in apis %}
{% if api %}
{% for a in api %}
|
{{a.slug}}
|
{{a.http_methods}}
|
{{a.auth_method}}
|
{% url 'djmongo_api_public_simple_search' a.database_name a.collection_name a.slug 'json' %}|csv|html
|
|
|
{% endfor %}
{% endif %}
{% endfor %}
Create an API
{% else %}
Create an API
{% endif %}
{% endblock %}