mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-12-06 02:59:29 +00:00
Some checks failed
Build assets artifact / Build assets artifact (push) Has been cancelled
Docker Image Build / docker (push) Has been cancelled
Docker Image Build (FrankenPHP) / docker (push) Has been cancelled
Static analysis / Static analysis (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.2, mysql) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.3, mysql) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.4, mysql) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.2, postgres) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.3, postgres) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.4, postgres) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.2, sqlite) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.3, sqlite) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.4, sqlite) (push) Has been cancelled
31 lines
1.1 KiB
Twig
31 lines
1.1 KiB
Twig
{% extends "main_card.html.twig" %}
|
|
{% macro genId(widget) %}{{ widget.vars.full_name }}{% endmacro %}
|
|
|
|
{% form_theme form "form/settings_form.html.twig" %}
|
|
|
|
{% block title %}{% trans %}info_providers.settings.title{% endtrans %}: {{ info_provider_info.name }}{% endblock %}
|
|
|
|
{% block card_title %}<i class="fa-solid fa-gear fa-fw"></i> {% trans %}info_providers.settings.title{% endtrans %}: <b>{{ info_provider_info.name }}</b>{% endblock %}
|
|
|
|
{% block card_content %}
|
|
<div class="offset-sm-3">
|
|
<h3>
|
|
{% if info_provider_info.url %}
|
|
<a href="{{ info_provider_info.url }}" class="link-external" target="_blank" rel="nofollow">{{ info_provider_info.name }}</a>
|
|
{% else %}
|
|
{{ info_provider_info.name }}
|
|
{% endif %}
|
|
</h3>
|
|
{% if info_provider_info.description %}
|
|
<p class="text-muted">{{ info_provider_info.description }}</p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{{ form_start(form) }}
|
|
<div class="row">
|
|
<div class="offset-sm-3 col mb-3 ps-2">
|
|
<b>{{ form_help(form) }}</b>
|
|
</div>
|
|
</div>
|
|
{{ form_end(form) }}
|
|
{% endblock %}
|