Files
Nexusphp-Panel/templates/transmission/index.html
DengDai ad2c65affb init
2025-12-08 14:31:21 +08:00

17 lines
561 B
HTML

{% extends "base.html" %}
{% block title %}Transmission - PT Manager{% endblock %}
{% block page_title %}Transmission{% endblock %}
{% block content %}
<div class="bg-white rounded-lg shadow-md p-6">
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-semibold">Transmission 客户端管理</h2>
<a href="{{ url_for('transmission.torrents') }}"
class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded text-sm">
种子列表
</a>
</div>
</div>
{% endblock %}