{% extends "djmongo/console/base.html" %} {% block Content %} {% load i18n %}

{%trans "Notes:" %}

Depending on how your saved searches are constructed, they may not run without GET parameters supplied. Use double dollar sign "$$" notation for variable replacement. See the Saved Search Documentation for more information.

{% trans "Saved Searches" %}

{% for s in savedsearches %} {% if s.is_public %} {% else %} {% endif %} {% endfor %}
Slug Is Public Group Created By Database/Collection API URL Query Actions
{{s.slug}} {{s.is_public}} {{s.group}} {{s.user.first_name}} {{s.user.last_name}} ({{s.user}}) {{s.database_name}}/{{s.collection_name}}
{% url 'djmongo_api_run_public_saved_search_by_slug' s.slug %}
{% url 'djmongo_api_run_saved_search_by_slug' s.slug %}
{{s.query}}
{% if s.is_public %} Run {% else %} Run {% endif %} Edit Delete
{% endblock %}