{% extends "django_dagster/base.html" %} {% load i18n %} {% block content_title %}

{{ title }}

{% endblock %} {% block dagster_breadcrumbs %} › {% trans 'Jobs' %} {% endblock %} {% block dagster_content %} {% if jobs is not None %} {% if jobs %}
{% if current_sort == 'name' %} {% elif current_sort == '-name' %} {% else %} {% endif %} {% if dagster_ui_url %} {% endif %} {% for job in jobs %} {% if dagster_ui_url %} {% endif %} {% endfor %}
{% trans 'Description' %}
{% trans 'Dagster UI' %}
{{ job.name }} {{ job.description|default:"—" }}{% if job.dagster_ui_url %}{% endif %}
{% else %}

{% trans 'No jobs found. Make sure your Dagster instance has code locations loaded.' %}

{% endif %} {% endif %} {% endblock %}