That is, the button "read more >>" I did and it even functions as it should, but this button does not make sense because my posts are displayed in full. How to set character limits? This is the line that I think is decisive in my case. but how and where to apply it, I do not know. I just registered it in model.py
class Posts(models.Model): # v--- вот эта строчка ---v slug = models.CharField(verbose_name='lasha', max_length=100,blank=True) def get_abs_url(self): return '/blog/{0}/'.format(self.id) def __str__(self): return self.title