# Something along the lines of this.
rate = Rate.objects.get(user=request.user)
context = {...., "user": request.user, "rate": rate}
return render(request, 'template.html', context=context)
In your template:
{% if rate %}
<h2><a href="https://stackoverflow.com/games/{{game.id}}/{{game.slug}}/add_rate/edit/{{rate.id}}/">Edit rate</a></h2>
{% else %}
<h2><a href="http://stackoverflow.com/games/{{game.id}}/{{game.slug}}/add_rate">Add rate</a></h2>
{% endif %}
6
solved Django, how do it in template?