Django template engine comes as part of django framework and its very easy, extensible and handy to develop complex web applications with simplest eff...
MicroPyramid Blog
Articles that strengthen our current focus on AI systems, modernization, and product engineering, alongside the broader engineering archive.
Older posts still cover Django, Python, AWS, Salesforce, React, Flutter, and Svelte, but the clearest current signal is around the three service lanes below.
AI Systems
RAG, knowledge workflows, search, and practical AI system design.
Explore service pageModernization
Legacy cleanup, migration planning, Django rescue, and safer system change.
Explore service pageProduct Engineering
Full-stack delivery, dashboards, portals, MVPs, and AI-ready product work.
Explore service pageUsing Facebook integration, we can get the user verified email id, general information, friends, pages, groups and you can post on his profile, facebo...
When your model query API don't go well or you want more performance, you can use raw sql queries in django. The Django Object Relational Mapper ...
Silmilar to the regular formsets, django also provide model formset that make it easy to work with django models. Django model formsets provide a way ...
In any web application we need to display notification messages to the end user after processing a form or some other types of his requests. To make t...
In some cases the we might want to store generic model object, rather a particular specific model as 'ForeignKey'. Generic model object mean...
In Django project, We could manage by executing some commands which could be invoked through the manage.py....
Django has a beautiful feature of signals which will record all the actions performed on particular model. In the current blog post we’ll learn how to...
We always struggle to give users customization's even before they login to the system like abc.micropyramid.com and django don't know how to...
Django application has a GM2MField that combines the features of the standard Django "ManyToManyField" and "GenericForeignKey"....