DetailView

class YourView(DetailView):
	model			= YourModel 
    template_name	= 'your_model_detail.html' 
Virgin Programmer