Python 3 - Format String fun
This post is dedicated for cases where we intend to append a variable value in a…
April 11, 2020
You have a view with 4-5 fields to display. Suppose, there are two fields: payment amount and currency. Where currency can be INR and USD. I want to show fields in a table, don’t want to show these two fields as separate.
I want to show these two fields as one. Example:
ID Name Amount
1 ABC 10 USD
2 XYZ 700 INR
I hope you get the above example, otherwise if the two fields will be separate. I will have 4 fields in above table.
Lets see how we can configure our view.
{% raw %}
{{ amount }} {{ currency }}
{% endraw %}
This post is dedicated for cases where we intend to append a variable value in a…
Introduction In this post, we will see Python 3.7.9 patch for FIPS enabled…
Problem Statement I developed a simple ReactJS application where I have used…
Introduction In this post, we will see: use Grafana Community Edition (Free…
In previous post (Trigger Email on Blob Trigger), we saw how we can create such…
This is due to our web server are configured to deny accessing this directory…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…