51 lines
1.5 KiB
HTML
51 lines
1.5 KiB
HTML
{% extends "main.html" %} {% block header %}
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" href="static/novels/css/result.css">
|
|
<style>
|
|
td,
|
|
th {
|
|
text-align: center !important;
|
|
}
|
|
</style>
|
|
{% endblock %} {% block content %} {% include "search_bar.html" %}
|
|
<div class="container">
|
|
{% if is_bookmark %}
|
|
<table class="table table-striped table-hover" style="margin-bottom: 50px;">
|
|
<thead>
|
|
<tr align="center">
|
|
<th>小说名</th>
|
|
<th>源目录</th>
|
|
<th>章节名</th>
|
|
<th>添加时间</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{%for item in result%}
|
|
<tr>
|
|
<td>
|
|
<a href="/search?wd={{item.novels_name}}">{{item.novels_name}}</a>
|
|
</td>
|
|
<td>
|
|
<a href="/chapter?url={{item.chapter_url}}&novels_name={{item.novels_name}}">查看{{item.novels_name}}源目录</a>
|
|
</td>
|
|
<td>
|
|
<a href="{{item.bookmark}}&from_bookmarks">{{item.chapter_name}}</a>
|
|
</td>
|
|
<td>{{item.add_time}}</td>
|
|
<th class="del-bookmark">
|
|
<a class="bookmark_url" data-value="{{item.bookmark}}" href="javascript:;">删除</a>
|
|
</th>
|
|
</tr>
|
|
{%endfor%}
|
|
</tbody>
|
|
</table>
|
|
{% else %}
|
|
<center>暂无书签数据</center>
|
|
{% endif %}
|
|
{% include "lcxs_show.html" %}
|
|
|
|
</div>
|
|
{% endblock %} {% block script %}
|
|
<script src="static/novels/js/bookmarks.js"></script>
|
|
{% endblock %} |