Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
apache-airflow / www / templates / airflow / plugin.html
Size: Mime:
{#
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.  The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License.  You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied.  See the License for the
specific language governing permissions and limitations
under the License.
#}

{% extends base_template %}

{% block title %}
  {{ title }}
{% endblock %}

{% block content %}
  <h2>{{ title }}</h2>
  {% if plugins|length == 0 %}
    <p>No plugins loaded. Learn more in the
      <a href="{{ doc_url }}" target="_blank">plugins documentation</a>.
    </p>
  {% endif %}
  {% for plugin in plugins %}
    <h4>{{ plugin["plugin_no"] }}. {{ plugin["plugin_name"] }}</h4>
    <table class="table table-striped table-bordered">
      <tr>
        <th>Attribute</th>
        <th>Value</th>
      </tr>
      {% for attr, value in plugin["attrs"].items() %}
        <tr>
          <td>{{ attr }}</td>
          <td class='code'>{{ value }}</td>
        </tr>
      {% endfor %}
    </table>
  {% endfor %}
{% endblock %}