All Posts Create a Post
Command to handle deploy Django with quickly
Hello guys, this morning i want to share simply how to custom command to handle deploy Django with quickly. ./manage.py deploy --yes <username> <password> <email> ./manage.py deploy --yes --username=myusername --password=mypassword …
Implement Realtime Search using Django and Ajax
Hello guys and welcome back, this night i want to share a simply tutorial how to Implement Realtime Search using Django and Ajax. Lets goo… ^_^ 1. yourapp/models.py from django.db …
Simply how to fix .rst (reStructuredText) for PyPi
Hello guys, this night i want to share simply tutorial how to fix .rst (reStructuredText) format for PyPi. This problem simple but important. previously, i was confused to handle this …
Custom redirect urls django
Example in this problem we need redirect the url http://localhost:8000/a/b/C/123/4/5/ to http://localhost:8000/abC12345 without / slash. 1. In your views.py from django.http import HttpResponse from django.views.generic.base import RedirectView from django.core.urlresolvers import …
How to minify HTML output in Django
So, you want to compress the size of the HTML that Django generates? Here is the Django way to do it. In order to do this, you’ll have to write …
Remove all files .pyc with recrusive method
Remove all files .pyc with recrusive method - This method simple but important. Example in your project dir is like this: project_dir/ __init__.py __init__.pyc something.py something.pyc ... core/ __init__.py __init__.pyc …
Simple bash scripting for login before open the terminal
Add this in your file of /etc/bash.bashrc, makesure you logged in as root. while true; do # Don't exit at Ctrl-C trap "echo" SIGINT printf "n" echo -n " Who …
Django: Remove Duplicates Filter for Related Posts
Django: Remove Duplicates Filter for Related Posts. In yourapp/models.py class Post(models.Model): title = models.CharField(max_length=200) slug = models.SlugField(max_length=200, unique=True) tags = models.ManyToManyField('Tag') In yourapp/views.py class DetailPostView(generic.DetailView): model = Post template_name = …
Adding BroadCast Mail to All User Registered in Django Admin
Adding BroadCast Mail to All User Registered in Django Admin. This is my last problem, we need custom default Django Admin to can submit BroadCast mail to All User. Because …
Program Mengunci Folder dengan Python VS CMD
Program Mengunci Folder dengan Python VS CMD – Program ini sebenarnya hanya memanfaatkan fasilitas dari CMD (Command Prompt) itu sendiri. Jika dalam CMD, kita disuruh untuk mengetikkan perintah caclsd:Pribadi /d …
- 1
- 2