17 lines
561 B
HTML
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 %} |