First step is import Comment and ContentType to your view like below from django.contrib.comments.models import Comment from django.contrib.contenttypes.models import ContentType Second step is defining your model which you want to paginate its comments content_type_id= ContentType.objects.get_for_model( YOUR_MODEL_NAME ) Last get comments of specific instance of your model class with defining object_pk as filter parameter comments = Comment.objects.filter(content_type=content_type_id,object_pk=quote_id) here is complete view code from django.core.paginator import Paginator, InvalidPage, EmptyPage from django.contrib.comments.models import Comment from django.contrib.contenttypes.models import ContentType def quote_show_page(request,quote_id): quote = get_object_or_404(Quote, id=quote_id) content_type_id=ContentType.objects.get_for_model(Quote) comments = Comment.objects.filter(content_type=content_type_id,object_pk=quote_id) paginator = Paginator(comments, 5) # Show 5 comments pe...
http://zierfischkaefig.de/merkblaetter/raspberry-pi-edimax-ew-7811un-und-ein-verstecktes-wlan/ Bugün sipariş ettiğim raspberry pi zero elime geçti. İnanılmaz küçük bir bilgisayar ilk gördüğümdeki heyecanı şaşkınlığı herhalde hiç unutmayacağım. Yukardaki makaledeki ayarlar ile raspberry pi zero yu cli modda internete wifi adaptör(edimax kolay ve hızlıca tanınıyor) otomatik internete bağlayabilirsiniz
Containers A container is a process running on the host system. This process is started by the container runtime from a container image, and the runtime provides a set of tools to manage the container process. Namespaces virtualize the container process’s PID, network, root, and users. Cgroups help set resource usage limits the container process can consume on the host system, and security contexts enforce permissions the container process has on the host system. A container, as a runtime object, consumes the typical resources any running process would consume on a system: storage for the file system and any saved configuration files, CPU, memory, and networking to serve traffic to/from external clients, and other containers or devices on the system. docker run container from image and connect it with shell , install necessary networking tools docker run -d -it ubuntu:22.10 bash docker run -d -it --privileged ubuntu:22.10 bash -> if you need to write to...
Comments