Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
Custom Password Less Authentication in Django
Authentication backends allow the ability to change what method checks your users credentials.For web services, ie Facebook authentication, you don't have access to user data like a password. Without password(not like random string) we can't create a user in django. Facebook connect provides you details of the currently authenticated user. -
Overriding Django Model Behaviour with Proxy Model
The main Usage of a proxy model is to override the main functionality of existing Model. It is a type of model inheritance without creating a new table in Database. It always queries on original model with overridden methods or managers. -
How to Filter a Django Queryset using Extra
Using SQL Queries in Django ORM - Filtering extra objects within in a single query, to reduce the number of queries. -
Django Acceptance Testing Automation with Robot Framework
Acceptance testing automation for django web and REST applications using a robot testing framework. -
Understanding Middleware Functionality in Django2.0
Understanding new style of middleware in Django2.0, the difference between old-style & new-style. How to write custom middlewares in new-style and upgrading from old-style middleware. -
How to Implement TokenBasedAuthentication in DjangoRestFramework
This blog explains you how to use Token Authentication to authenticate users within a Django Application. Token Authentication is a way to authorize users by using an Auth Token. -
Customizing Django REST API Serializers
Customizing Django REST API Serializers -
Implementation of Single Sign on Using Auth0 in Django Application
As the no of applications increases, users need to create username & passwords, need to remember for each application. Users can't remember these details and, sometimes users use single username/password for all applications, then there may be a chance of hacking your accounts easily. To provide more flexibility for the users, we should provide sso login, which makes seamless authentication experience. -
What is Django CRM and it’s Advantages
Here in this blog you can find about CRM, Importance of CRM in sales, Types of CRM, How django crm helps for business and it’s advantages -
Is Django Best Framework for your Web Application Development
Is Django best framework for your web application development -
Live Chat with SalesForce Live Agent
Live chat with SalesForce Live Agent -
How to Share Data Across Salesforce Organizations using Salesforce to Salesforce Integration
Customers have their own organizations in a shared platform. Sometimes, one organization may require to fetch data from the other one. To share data between two organizations, there are some methods in salesforce, one of them is establishing Salesforce to Salesforce connection in both organizations. -
How to Backup and Restore Mysql, Postgresql and Mongodb Databases
Data loss can happen when we accidentally delete the files, or when server crashes or system fails, or when we applied migrations to the data that didn't work so we don't get previous data with the schema. In the production environment, it's mandatory to do database backup when we do changes in the code. -
How to Create Reminder or Automatic Reminder in Salesforce
In Salesforce Organization, by using salesforce Automated reminders & task reminder email you can manage all the leads who are helpful for the business that you won't miss anything on anyone. -
How to Set Up Email-to-Case and On-Demand Email-to-Case
In any Organization, Support is important to enhance good relationship with their customers. In Salesforce, whenever a customer mails any need of support or interaction with the organization, then the mail is automatically converted into case and assigned to the certain user based on the subject and information available in that mail. In this, we will look into Email-to-Case and On-Demand Email-to-Case. -
How to Use Custom Labels in Salesforce
Salesforce is used by many users whose native languages are different, If the application doesn't have any Multilanguage feature, it would be difficult for the users to use it. So, in Salesforce we have Custom Labels where multilanguage applications can be created. -
Letsencrypt Wildcard - Setup Wildcard Subdomain Using Letsencrypt and Certbot
To get wildcard supported certificates, we need to pass the challenge which requires adding TXT records in your dns records.To get certificates for single domains, there is no need to modify dns records. Check this link https://micropyramid.com/blog/configure-ssl-with-letsencrypt-and-nginx/ for more info. -
HTTP2 and SPDY Protocols - Make HTTP Faster and Safer
HTTP/2, next version of HTTP/1, http/1 can not handle the present web which has become more resource intensive, it cannot processes multiple requests in an efficient manner. HTTP/2 has got many techniques to harness the requirements of current web experience.SPDY is the core part of HTTP/2 protocol, many of the http/2 protocol techniques are part SPDY. -
Creating Custom Splash Page in Salesforce
In many websites, we come across a page displaying first and then redirecting to the main website page automatically or clicking on a button, which is known as splash page. In Salesforce, we can have splash pages for tabs(custom objects). Upon clicking on the tab, we can have a splash page first and then the regular tab as it is. -
Highlights of Salesforce Summer '18 Release Notes
Salesforce gets its CRM updated for every release. Generally, Salesforce has three releases per year(spring, summer, winter). In this we are going to look into updates and features of summer '18 release notes. -
Salesforce Source Code Management with Visual Studio Code, Git and GitHub
Salesforce made an easy to manage Salesforce source code with Visual Studio Code and GitHub by providing necessary extensions in the Visual Studio Code and Salesforce CLI which helps you to do manage whole process more easily. Here, we discussed about how source code can be retrieved and deployed to Salesforce orgs as well as to Git and GitHub. -
Tips and Best Practices on How to Use Salesforce Campaign Management Effectively
Tips and Best Practices on how to use Salesforce campaign Management Effectively to increase the number of leads. -
Is Salesforce Good for Small Business?
Get detailed information about how salesforce is good for small business and it's advantages and disadvantages -
Which CRM is Best for Startups and Small Businesses?
There are many CRM software providers but there will always be the best one that is Salesforce CRM which is in the industry for nearly 20years, they have easily won the huge amount of market shares on Sales, Marketing and customer service applications -
Integration of 2Checkout with Django
Payment Gateways which facilitate communication within banks and Security is an integral component of all payment gateways, as sensitive data such as Credit Card Numbers need to be protected from any fraudulent parties.We are having payment gateways like paypal,braintree,payumoney,2checkout... In this post,we will see how to integrate 2checkout with our django application.