任何人都可以帮助我如何实现这个输出。如果有可能。
我想水平和垂直地查看我的标题。
例如
Header 4 Header 5 Header 6 Calendar
Header 1 a b c 10/10
Header 2 d e f 11/10
Header 3 g h i 12/10
垂直标题是硬编码的,但水平标题应该从数据库上传(由用户输入),我希望日历显示在列的末尾。这意味着如果让说用户确实输入了 5 个输入并且它显示在水平标题中,并且日历应该显示在第 7 列。
这是我的html
{% if solutions%}
<div id ="person_table">
<form action="{% url Solution_view person_NOID %}" method="post">
{% csrf_token %}
<table border="1" id="thetable">
<thead>
<tr>
<th>NOID {{ person_NOID }}</th>
<th>SMOKING</th>
<th>WEIGHT</th>
<th>BP</th>
</tr>
</thead>
<tbody>
{% for solution in solutions %}
<tr>
<td>{{ solution.NEW_DATE }}</td>
<td><input type="text" name="solution" id="solution{{ forloop.counter }}" value="{{ solution.SMOKING}}" /></td>
<td><input type="text" name="solution" id="solution{{ forloop.counter }}" value="{{ solution.WEIGHT}}" /></td>
<td><input type="text" name="solution" id="solution{{ forloop.counter }}" value="{{ solution.BP}}" /></td>
<td><input type="text" name="solution" id="solution{{ forloop.counter }}" value="{{ solution.BP}}" /></td>
</tr>
{% endfor %}
</tbody>
</table>
<input type="submit" value="Save" />
</form>
{% else %}
<p>No Data.</p>
{% endif %}
</body>
我不知道这是否可以做到。看来我与这个SO 无关。