私はモデルを持っています
class tournaments(models.Model): # .... total_rounds = models.IntegerField(max_length=11, blank=True, null=True) # .... def get_total_rounds_count(self): return self.total_rounds
ビュー.py:
def tourney_view(request, offset): # ..... if (offset): selected_tournament = tournaments.objects.get(id=offset) return render_to_response('tournament.html', {'tournament': selected_tournament})
「tournament.html」テンプレートで、total_rounds をループしようとしています:
{% for q in tournament.get_total_rounds_count%} {% endfor %}
エラーが発生しました: 'long' object is not iterable なぜですか? 私のフィールドはIntegerFieldです。整数値をループしようとしているだけですが、「反復可能ではありません」