diff --git a/app/assets/stylesheets/app.scss b/app/assets/stylesheets/app.scss index d2d7fb838..f1f9c8fc7 100644 --- a/app/assets/stylesheets/app.scss +++ b/app/assets/stylesheets/app.scss @@ -88,3 +88,23 @@ td { .heading-xlarge { margin-bottom: 20px; } + +#footer { + + .footer-categories { + + @extend %site-width-container; + + &-wrapper { + padding: 0 0 $gutter * 2; + margin: 0 0 $gutter; + border-bottom: 1px solid $border-colour; + } + + h2 { + margin: 0 0 $gutter-two-thirds; + } + + } + +} \ No newline at end of file diff --git a/app/main/views/api_keys.py b/app/main/views/api_keys.py index 8053e2cf9..0ee7b2220 100644 --- a/app/main/views/api_keys.py +++ b/app/main/views/api_keys.py @@ -6,10 +6,9 @@ from app import api_key_api_client from app.utils import user_has_permissions -@main.route("/services//documentation") -@login_required -def documentation(service_id): - return render_template('views/documentation.html', service_id=service_id) +@main.route("/documentation") +def documentation(): + return render_template('views/documentation.html') @main.route("/services//api-keys") diff --git a/app/templates/admin_template.html b/app/templates/admin_template.html index 8b773ce7c..7f2efc0b0 100644 --- a/app/templates/admin_template.html +++ b/app/templates/admin_template.html @@ -72,10 +72,31 @@ {% endblock %} +{% block footer_top %} + +{% endblock %} + {% block footer_support_links %} diff --git a/app/templates/main_nav.html b/app/templates/main_nav.html index 24a466958..03b0e87fc 100644 --- a/app/templates/main_nav.html +++ b/app/templates/main_nav.html @@ -22,7 +22,6 @@ {% if current_user.has_permissions(['manage_api_keys', 'access_developer_docs']) %} {% endif %}