任何人都可以幫助我瞭解如何實現此輸出。如果可能。垂直和水平表格標題
我想查看我的頭水平和垂直。
e.g
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>
我不知道這是可以做到。看來,我不能涉及到this SO。
是的,這是可能的。下一個問題? – deed02392
謝謝,你能給我至少在哪裏得到的信息..我有點卡住了。 – noobes