All Posts Create a Post
How to display serializer in delete action with django rest swagger
By default, django rest swagger doesn’t displayed the Serializer in DELETE method. But, for some reason I need to implement prevent deletion & force deletion case. So, basicly to implement …
Django rest clean up before validation
Sometime we need to clean up the value before it validated by an exiting validations. For example, when user sended an longitude and latitude data into backend with multiple length …
move multiple files using bash
# This method if the files has no extentions. $ for file in *; do mv "$file" "$file.png"; done # This method if the files has extentions before. $ for …
Django Standard API Response Middleware for DRF
As you can see, if you using django-rest-framework, you will found many different response format. This middleware to solve all of these problems with implement the Standard API Response. All …
Awesome django books by agiliq.com
This awesome django books for refference is also open sourced at https://github.com/agiliq/books Django Admin Cookbook (Django 2.0) Django ORM Cookbook (Django 2.0) Building APIs with Django and Django Rest Framework …
Martor 1.2.7 has been released
This Martor is one of many plugin for django markdown editor. But in this case, martor still use Semantic UI for the front-end. For the previous version, martor included the …
Markdown syntax to resize or styling the image
This case was issued by muradaliyev88 in django-markdown-editor repository. as answered by rudolfbyker If you are writing MarkDown for PanDoc, you can do this: {height=100px} or {style="border: 1px solid;height:100px"} result …
How to custom select language icon in django administration
1. Add the base_site file inside templates/admin/base_site.html. {% extends "admin/base.html" %} {% load static i18n %} {% block title %}{{ title }} | {{ site_title|default:_('Situs django admin') }}{% endblock %} …
How to setup all raw_id_fields and search_fields for django
For example I have this 3 fields as question_set, question and folder. I need to assign all of this fields into raw_id_fields inside the admin.ModelAdmin without add manually per-single fields. …
How to automaticly backup your projects into external hardisk in ubuntu?
Rsync, which stands for “remote sync”, is a remote and local file synchronization tool. It uses an algorithm that minimizes the amount of data copied by only moving the portions …