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 %} {% load i18n %}
<div> <div class="ticket-container">
<p> <p class="title">
{{ title | safe }} {{ title | safe }}
</p> </p>
<div> <div>
{% for child in content %} {% for child in content %}
<h2>{{ child.title }}</h2> <h4 style="color: #333;
<hr> 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 %} {% for item in child.content %}
<li style="list-style-type:none"> <li style="overflow: hidden; list-style-type: none;">
<b>{{ item.title }}: </b> {{ item.value }} <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> </li>
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}