perf: 优化工单处理提示消息页面

pull/12202/head
wangruidong 2023-11-24 17:37:14 +08:00 committed by 老广
parent ba38852354
commit 18670d493e
1 changed files with 11 additions and 6 deletions

View File

@ -1,15 +1,20 @@
{% load i18n %}
<div>
<p>
<div class="ticket-container">
<p class="title">
{{ title | safe }}
</p>
<div>
{% for child in content %}
<h2>{{ child.title }}</h2>
<hr>
<h4 style="color: #333;
font-size: 1.1em;
margin-top: 20px;
border-bottom: 1px solid #ccc;
padding-bottom: 5px;
background-color: #f7f7f7;">{{ child.title }}</h4>
{% for item in child.content %}
<li style="list-style-type:none">
<b>{{ item.title }}: </b> {{ item.value }}
<li style="overflow: hidden; list-style-type: none;">
<span style="color: #737373;line-height: 2.5em;">{{ item.title }} </span>
<span style="float: right; width: 90%;line-height: 2.5em;">{{ item.value }}</span>
</li>
{% endfor %}
{% endfor %}