<!DOCTYPE html>
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
<head>
|
<th:block th:include="include :: header('查看缓存信息')" />
|
</head>
|
<body class="white-bg">
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
<form class="form-horizontal m" id="form-config-edit">
|
|
<div class="form-group">
|
<label class="col-sm-3 control-label">KEY:</label>
|
<div class="form-control-static" th:text="${info.key}">
|
</div>
|
</div>
|
<div class="form-group">
|
<label class="col-sm-3 control-label">值:</label>
|
<div class="form-control-static" th:text="${info.value}">
|
</div>
|
</div>
|
</form>
|
</div>
|
<th:block th:include="include :: footer" />
|
</body>
|
</html>
|