Single model instances on separate html

What is a best way to display single model instances on different html? I know how it is done on single page (forloop), but could not figure out how the same would be possible on different html. i.e. single question per page?

my pseudo model:

class Question(models.Model):
  desc = models.CharField()
Back to Top