app consisting of a total of say 6 pages be made?
Django isn't eaay ? class EntryUpdateView(UpdateView): fields = ['content', 'title'] model = model_name class EntryDetailView(DetailView): model = model_name class EntryListView(ListView): qs = Entry.objects.all()
You can do that in less than 40 lines of code if I'm not mistaken
Обсуждают сегодня