2018-11-20 20:36:14 +08:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="zh-CN">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
2021-04-18 14:25:52 +08:00
|
|
|
|
<title>{{i18n .Lang "project.prj_space_list"}} - Powered by MinDoc</title>
|
2018-11-20 20:36:14 +08:00
|
|
|
|
<meta name="keywords" content="MinDoc,文档在线管理系统,WIKI,wiki,wiki在线,文档在线管理,接口文档在线管理,接口文档管理">
|
|
|
|
|
<meta name="description" content="MinDoc文档在线管理系统 {{.site_description}}">
|
|
|
|
|
<meta name="author" content="Minho" />
|
|
|
|
|
<meta name="site" content="https://www.iminho.me" />
|
|
|
|
|
<!-- Bootstrap -->
|
|
|
|
|
<link href="{{cdncss "/static/bootstrap/css/bootstrap.min.css"}}" rel="stylesheet">
|
|
|
|
|
<link href="{{cdncss "/static/font-awesome/css/font-awesome.min.css"}}" rel="stylesheet">
|
|
|
|
|
|
|
|
|
|
<link href="{{cdncss "/static/css/main.css" "version"}}" rel="stylesheet">
|
2018-11-21 11:03:16 +08:00
|
|
|
|
|
2018-11-20 20:36:14 +08:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="manual-reader manual-container manual-search-reader">
|
|
|
|
|
{{template "widgets/header.tpl" .}}
|
|
|
|
|
<div class="container manual-body">
|
|
|
|
|
<div class="search-head">
|
2021-04-18 14:25:52 +08:00
|
|
|
|
<strong class="search-title">{{i18n .Lang "project.prj_space_list"}}</strong>
|
2018-11-20 20:36:14 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="hide tag-container-outer" style="border: 0;margin-top: 0;padding: 5px 15px;min-height: 200px;">
|
|
|
|
|
<div class="attach-list" id="ItemsetsList">
|
2018-11-21 11:03:16 +08:00
|
|
|
|
{{range $index,$item := .Lists}}
|
|
|
|
|
<a href="{{urlfor "ItemsetsController.List" ":key" $item.ItemKey}}" class="ui-card" title="{{$item.ItemName}}">
|
|
|
|
|
<div class="header">{{$item.ItemName}}</div>
|
2021-04-18 14:25:52 +08:00
|
|
|
|
<div class="description">{{i18n $.Lang "project.prj_amount"}}:{{$item.BookNumber}} {{i18n $.Lang "project.creator"}}:{{$item.CreateName}}<br/> {{i18n $.Lang "project.create_time"}}:{{$item.CreateTimeString}}</div>
|
2018-11-21 11:03:16 +08:00
|
|
|
|
</a>
|
|
|
|
|
{{else}}
|
|
|
|
|
<div class="search-empty">
|
|
|
|
|
<img src="{{cdnimg "/static/images/search_empty.png"}}" class="empty-image">
|
2021-04-18 14:25:52 +08:00
|
|
|
|
<span class="empty-text">{{i18n .Lang "project.no_projct_space"}}</span>
|
2018-11-21 11:03:16 +08:00
|
|
|
|
</div>
|
|
|
|
|
{{end}}
|
2018-11-20 20:36:14 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<nav class="pagination-container">
|
2023-08-09 10:51:06 +08:00
|
|
|
|
{{if gt .TotalPages 1}}
|
|
|
|
|
{{.PageHtml}}
|
2018-11-20 20:36:14 +08:00
|
|
|
|
{{end}}
|
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
|
</nav>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{{template "widgets/footer.tpl" .}}
|
|
|
|
|
</div>
|
|
|
|
|
<script src="{{cdnjs "/static/jquery/1.12.4/jquery.min.js"}}" type="text/javascript"></script>
|
|
|
|
|
<script src="{{cdnjs "/static/bootstrap/js/bootstrap.min.js"}}" type="text/javascript"></script>
|
|
|
|
|
{{.Scripts}}
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|