Files
2026-07-13 13:17:40 +08:00

15 lines
665 B
HTML

{# Displays a link to the edit interface of the page source in the specified
Version Control System. #} {% if sourcename is defined and
theme_use_edit_page_button==true and page_source_suffix and
show_edit_button==true %} {% set src = sourcename.split('.') %}
<div class="tocsection editthispage">
<a href="{{ get_edit_provider_and_url()[1] }}">
<i class="fa-solid fa-pencil"></i>
{% set provider = get_edit_provider_and_url()[0] %} {% block
edit_this_page_text %} {% if provider %} {% trans provider=provider %}Edit
on {{ provider }}{% endtrans %} {% else %} {% trans %}Edit{% endtrans %} {%
endif %} {% endblock %}
</a>
</div>
{% endif %}