我有一個頁面列出了用戶完成的問題(在C編程:-))。說,有10個,每個登錄用戶都可以訪問這些。要顯示正確的方法來存儲和顯示用戶特定的狀態
頁是這樣的:
<table>
<tr>
<th>Test desc</th>
<th>Test state</th>
</tr>
{% for t in test%}
<tr>
<td>{{ t.desc }}</td>
<td>'display a image if it is completed else another image'</td>
</tr>
{% endfor %}
</table>
用戶轉發到這個網頁views.py
def test(request):
cProblems = Problems_c.objects.all()
return render_to_response('subject/test.html', {'list':cProblems})
我需要知道兩件事情。
- 如何在django中存儲這個額外的用戶特定信息。
- 如何在網頁
謝謝jpic。我明天會試一試。 – John 2012-03-27 17:49:29