Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
Php7 Hosting on Ubuntu Server with Nginx(LEMP Stack)
PHP7 is the latest version with lot of performance improvements and every one want to update their servers and code to it. Lets see how to configure one and host your code.Here we see the combination of ubuntu, nginx, php-fpm, php7, and mysql.Compared to LAMP stack LEMP is powerfull as we use Nginx as reverse proxy and static file serving in contrast to Apache server. -
Hosting Django Application with Nginx and UWSGI
Django is a python based web- application development framework. Setting up a sample app and running it as easy as pie. Nginx is a webserver and like every other webserver it has it Pro's and Con's. Nginx was an answer to concurrency issue(handling thousands of concurrent connections) faced in apache and raised to fame. -
E-commerce (Paypal) Integration with Django
E-commerce is integration is becoming almost essential for every web application now a days. There are so many payment gateways to integrate with our application. Some of them are Amazon payments, Asiapay, BPAY, Brain Tree, PayPal ...etc. Out of these now in this we'll see how to integrate Paypal with our django Application. -
Dynamic Models in Django (Adding New Fields to Models from Admin)
Some times in the production level there may be a chance of adding new fields to our model.With the normal django models when we add new field to the model the database is not able to identify the new field.To make database identify the new field we have to drop the existing database from the database and sync our application again.During the time of production it is not possible to remove the existing data. The solution for this is Django-eav. With this we can add fields to our models on fly. -
Django Inclusion Tags
Django’s template system comes with a wide variety of built-in tags and filters designed to address the presentation logic needs of your application. You can extend the template engine by defining custom tags and filters using Python, and then make them available to your templates using the {% load %} tag.Custom template tags and filters must be inside a Django app. If they relate to an existing app it makes sense to create them there; otherwise, you should create a new app to hold them. -
How to Convert a Web Page into PDF Format Using RenderAs Attribute
Companies frequently need web page data to be converted into pdf. So, they can have an easy look into the progress. For this in salesforce we can convert visual-force pages, which consist of critical data into PDF format. -
How to Enable Opportunity Splits in Salesforce
Opportunity splits allows sales representatives to divide credit and revenue on any sales deal. If your sales process splits revenue from closed-won deals to give credit more than one team member then opportunity split feature will be used. -
Understanding Django Permissions And Groups
Django comes with a simple permissions system. It provides a way to assign permissions to specific users and groups of users. We can have permissions for add, edit, deleting a model. -
Process Builder in Salesforce
Process builder is the best automation tool available in Salesforce which can perform complex workflows seamlessly to automate anyone's business process. We can view process in graphical representation before activating it. -
How to Create Permission Sets in Salesforce
A permission set is a collection of settings and permissions that give users access to various tools and functions. -
How to Create One to One Relationship between Objects in Salesforce
Salesforce provides two relationships known as one to many relationship and many to many relationship(this can be done using junction object). Hence in this, we create one to one relationship by using lookup field, using roll up summary and triggers. -
How to Access Schema Builder in Salesforce
Schema builder in Salesforce is used to get all the objects and different kinds of relationships in one place. It can be used to modify and design new data models. Objects and fields can be created or modified in the schema builder. -
How Salesforce Financial Service Cloud Solves the Major Financial Service Problems
Salesforce Financial service cloud is designed to connect with the customers and clients more personally than ever. It helps to solve the security and other challenges faced by financial sector industries -
How to Manage Large Data Volumes Using Skinny Tables and Indexes
In every case, it’s hard to deal with tables containing a huge number of records. You can make skinny tables to contain oftentimes utilized fields and to maintain a strategic distance -
Jquery: Features, Overview and its Future
With the invention of new javascript frameworks and libraries, it is difficult for jquery to return to its prominence, but jquery will still be used by developers. -
How to Create Web-to-case in Salesforce
Customers can submit their cases directly in their website using a simple web-to-case form. These forms are used to convert submitted information into customer support requests and cases which can be seen in Salesforce.com -
How to Run a SOQL Query in Salesforce
Salesforce Object Query Language(SOQL) is used to fetch the data from Sobject in salesforce organization. As we know SQL is used by .Net developers to get data from a database in the same way SOQL is used by salesforce developers to get the data. -
How to Use Map Methods in Salesforce
Apex provides collections such as List, Set, Map. Each collection has its own properties and characteristics that make them to use widely in salesforce. One of them is Map and we will see about it. -
Gitlab and Docker - Continuous Integration, Deployment and Continuous Delivery
In this blog post, we will learn how to setup and use gitlab container registry to implement, test build and deploy your code automatically with Docker. -
Basic Live Agent Implementation
Customers in these days expect quick resolutions to their queries. In Salesforce, to resolve queries for the customers in a fast and efficient manner, we have Live Agent. This live agent provides customers the ability to interact with the support agents. -
How to Set Up Escalation Rules in Salesforce
In many businesses, when customers raise cases, and they are assigned manually to the agents by looking over the case details. But nowadays, cases are automatically escalated to the support agents by providing rule criteria. In Salesforce, we use escalation rules to automatically escalate cases. -
How to Setup HTTP Password Authentication with Nginx
HTTP Authentication is used to allow access limit to a site or particular directories by validating the username and password. HTTP basic authentication can also be combined with other access restriction methods, for example, restricting access by IP address or by geographical location. -
How to Create Custom List Views
In Salesforce, when you go to the home page of any object, you will get to see a standard view of records in that object. If you want to look at the important and useful records of an object in the form of a list, Custom List views are created. -
Workflow Field Update Action in Salesforce
In Salesforce, field update is used to change or update field records. This can be done by a creating field update actions and associating them with workflow rules, approval processes or entitlement processes. -
How to Configure Web to Lead Generation in Salesforce
Web-to-lead allows you to create a lead record in Salesforce whenever a visitor submits contact information on your website. This all can be done by creating web-to-lead form with required fields and customization's.