{% extends "includes/crud/table_list.html" %} {% load trans blocktrans from i18n %} {% block top_left_menu_items %} {% endblock top_left_menu_items %} {% comment %} Do not show an empty menu bar at the top. Once users can add SSH keys, we can remove this override and enable the ``create_button`` block {% endcomment %} {% block top_menu %} {% endblock top_menu %} {% block create_button %} {% comment %} {# TODO this is not supported currently, and is an admin only action #} {% url "..." project.slug as create_url %} {% trans "Add SSH key" as create_text %} {% include "includes/crud/create_button.html" with url=create_url text=create_text %} {% endcomment %} {% endblock create_button %} {% block list_placeholder_icon_class %} fa-duotone fa-lock-keyhole {% endblock list_placeholder_icon_class %} {% block list_placeholder_header %} {% blocktrans trimmed %} No SSH keys are configured for this project. {% endblocktrans %}
{% blocktrans trimmed %} SSH keys allow your project to clone from private repositories. {% endblocktrans %}
{% endblock list_placeholder_header %} {% block list_placeholder_text %} {% trans "Learn more" %} {% endblock list_placeholder_text %} {% block list_item_right_buttons %} {% endblock list_item_right_buttons %} {% block list_item_icon %} {% endblock list_item_icon %} {% block list_item_header %} {{ object.fingerprint|slice:"23" }} {% endblock list_item_header %} {% block list_item_meta %} {% endblock list_item_meta %} {% block list_item_extra %} {% endblock list_item_extra %}