Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
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. -
Deploying Wordpress Blog with Django using Docker Containers
Containers run services in an isolated environment, if we deploy our applications using containers then the host system on which these containers are running will not be affected even though the applications running within containers are being hacked. -
How to Send Email to a Public Group in Salesforce
In Salesforce it is quite difficult to send email to users individually when there are many. So, upon creating public groups with required users working on a particular project or something else. We can send emails to required particular users using public groups. -
How to Create Master-detail Relationship in Salesforce?
In Salesforce, relationships are used to create a link between objects. Whenever user clicks on particular object they can view its data and related data of that object. There are many relationships in salesforce, one among them is Master(parent)-detail(child) relationship. -
How to Use Data Loader in Salesforce
In any business importing and exporting of data is very important. Only to some extent, we can enter the data manually in the fields of any organization, So when there is a requirement for bulk upload of data, there are many tools available. In Salesforce, we use Data loader to export or import bulk data into the organization. -
How to Set Up Outbound Messaging in Salesforce
When you want to send information from Salesforce organization to any third party external service, Outbound messaging is used in Salesforce. It is a part of workflow rule, like whenever an action is triggered and an Outbound message is defined for that particular action, then the information will be delivered to external service as specified. -
Introduction to Django's Class Based Views - Understanding How a Class Based View Works
Django has MVT architecture. A view in django is just a callable that takes a request and returns a response. But this can be more than just a function, that contains the actual business logic of an URL. In addition to normal funcation based views Django provides of some classes which can be used as views. These allow you to structure your views and reuse code by inheriting them. -
Approval Process in Salesforce
As we know there will be role hierarchy in many organizations and permissions are assigned according to their roles. So, When a record or data is updated or inserted then automatically it should be approved by some assigned user. To do this In salesforce, we use Approval process method to automate the functionality. -
Understanding Django Serializers with Examples
Serializers are used for “translating” Django models into other formats like xmi,json,yaml(YAML Ain’t a Markup Language) -
Packages in Salesforce
In the salesforce organization, when you are building a component or application, it's important to know how the component or application should be distributed to other organizations or customers. So for this, we have packages in salesforce in which developed components and applications can be combined and distributed to other salesforce organizations. In this, we have defined different types of packages and their usage. -
How to Index Binary Files in Django Haystack
Now we are going to index text content which is stored in structured files such as PDFs, Microsoft Office documents, images, etc using haystack and sorl'sIn order to read and store the data, we can use SearchBackend.extract_file_contents(self, file_obj) method. It takes the file object, returns a dictionary containing two keys: metadata and contents. The contents value will be a string containing all of the text which the backend managed to extract from the file contents -
Inbound Email Service for Creating Records in Salesforce
For any type of CRM, we will receive various emails from different external systems. To create or save the information received via emails in Salesforce, we have Email Services known as Inbound Email Service -
How to Use List Methods in Salesforce
Apex provides collections such as List, Set, Map. These are similar to arrays, but these collections have advanced features and easier methods than an array. We will see about List, which is used widely in salesforce. -
Implement Search with Django-haystack and Elasticsearch Part-1
Haystack works as a search plugin for Django. You can use different backends Elastic-search, Whose, Sorl, Xapian to search objects. All backends work with the same code. In this post, I am using elastic search as backend. -
Custom Decorators To Check User Roles And Permissions In Django
A decorator is a function that takes another function and returns a newer,prettier version of that function.To know more about decorators in python see here https://micropyramid.com/blog/programming-with-python-decorators/The most common use of a decorator is the login_required. This decorator is used in conjunctionwith a view that restricts access to authenticated users only. -
Best Practices of Using Django Celery in Django Social Auth
Best Practices of Using Django Celery in Django Social Auth.