A Blog on DevOps and Hybrid Cloud

How can I reset size of hibernation file?

Tags: window10

Published May 14, 2024, 5:49 a.m. by cloudblog

You can change the size of hiberfil.sys using the powercfg utility:

POWERCFG /HIBERNATE /SIZE 100
  • Input command in your Start Menu search bar, then select Run as Administrator.
  • Enter powercfg …

Django returns 'TemplateDoesNotExist' when using Crispy Forms

Tags: crispy_form

Published May 14, 2024, 5:44 a.m. by tonu11singh@gmail.com

Using Crispy Forms with Django, I can only get a TemplateDoesNotExist error when using any feature of Crispy Forms. if you need to use bootstrap4

pip install django-crispy-forms pip install …

How to add CkEditor in Django

Tags: unix , cloud

Published May 14, 2024, 5:36 a.m. by cloudblog

Ckeditor, a WYSIWYG rich text editor allows users to write content directly inside web pages or online applications. A Django WYSIWYG editor built upon CKEditor, you can use it as …