0
私は、サービスを提供するためにサインアップした人にサービスを探しているユーザのリストが表示されるウェブサイトを持っています。私は(claim.htmlを言う)リンク先のページに特定のユーザーに関する情報を渡すことができますどのように、請求リンクについてユーザ専用のリンクdjango
{% for customer in customers %}
<tr>
<td style = "text-align:center">{{ customer.user.first_name|title }} {{ customer.user.last_name|title }}</td>
<td style = "text-align:center">{{ customer.user.profile.address|title }}</td>
<td style = "text-align:center"><a href="{% url 'claim' %}">Claim</a></td>
</tr>
{% endfor %}
:私は、次のコードを持っていますか?
ありがとうございます、Jahongirは、 –