Html – Django table reduce text when larger then cell size
I have home.html in my Django app, with the table in which if display all my posts: {% for post in posts %} <tr> <td>{% pagination_reverse_numbering paginator page_obj forloop.counter0 %}</td> <td style="width:10%"><a class="mr-2" href="{% url 'post-detail' post.id %}">{{ post.title }}</a></td>…