mirror of
https://github.com/ansible/awx.git
synced 2026-01-27 08:31:28 -03:30
29 lines
510 B
HTML
29 lines
510 B
HTML
{% extends "rest_framework/api.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block style %}
|
|
{{ block.super }}
|
|
<style type="text/css">
|
|
ul.breadcrumb {
|
|
visibility: hidden;
|
|
margin-top: 10px !important;
|
|
}
|
|
pre.err {
|
|
margin-bottom: 2em;
|
|
}
|
|
div.request-info, div.response-info {
|
|
display: none;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block branding_title %}{% endblock %}
|
|
|
|
{% block breadcrumbs %}
|
|
<ul class="breadcrumb">
|
|
<li>
|
|
<a href="{{ request.get_full_path }}" class="active">{{ name }}</a>
|
|
</li>
|
|
</ul>
|
|
{% endblock %}
|