17 lines
557 B
HTML
17 lines
557 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}qBittorrent - PT Manager{% endblock %}
|
|
|
|
{% block page_title %}qBittorrent{% 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">qBittorrent 客户端管理</h2>
|
|
<a href="{{ url_for('qbittorrent.torrents') }}"
|
|
class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded text-sm">
|
|
种子列表
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |