Is there a Django template tag that will convert a percentage to a human readable format?
For example:
- Convert 0.01 to 1%
- Convert 0.001 to 0.1%
- Convert 0.5 to 50%
I see in humanize there is nothing and I could not find anything in the Django documentation. I have tried {{ value|multiply:100 }}%
without success. I know I can write my own template tag but I prefer to avoid doing that whenever possible.
UPDATE: I have also looked into the
widthratio
tag. For a value of 0.001 it goes to 0%. This is not what I want, unfortunately.
django django-templates
add a comment |
For example:
- Convert 0.01 to 1%
- Convert 0.001 to 0.1%
- Convert 0.5 to 50%
I see in humanize there is nothing and I could not find anything in the Django documentation. I have tried {{ value|multiply:100 }}%
without success. I know I can write my own template tag but I prefer to avoid doing that whenever possible.
UPDATE: I have also looked into the
widthratio
tag. For a value of 0.001 it goes to 0%. This is not what I want, unfortunately.
django django-templates
1
you could use{% widthratio value 1 100 %} %
but it's not very readable in my opinion since it wasn't intended to be used for that, so I'd make my own template filter which would also check for valid value (< 1).
– dirkgroten
Jan 2 at 16:37
thanks @dirkgroten. Please see update to question.
– Scott Skiles
Jan 2 at 16:43
1
So the simple answer is: Make your own filter, it's a one-liner in your case.
– dirkgroten
Jan 2 at 16:45
Sure. But the 'one-liner' needs to be written and imported in every template that it is used. I was hoping for a solution such as 'humanize' integration, ideally in standard lib. Seems like a common enough problem to not usewidthratio.
Thanks for the help.
– Scott Skiles
Jan 2 at 18:26
1
I have one file with a multitude of useful custom filters that I import everywhere. If I need to add a new filter or tag I add it there.
– dirkgroten
Jan 2 at 19:50
add a comment |
For example:
- Convert 0.01 to 1%
- Convert 0.001 to 0.1%
- Convert 0.5 to 50%
I see in humanize there is nothing and I could not find anything in the Django documentation. I have tried {{ value|multiply:100 }}%
without success. I know I can write my own template tag but I prefer to avoid doing that whenever possible.
UPDATE: I have also looked into the
widthratio
tag. For a value of 0.001 it goes to 0%. This is not what I want, unfortunately.
django django-templates
For example:
- Convert 0.01 to 1%
- Convert 0.001 to 0.1%
- Convert 0.5 to 50%
I see in humanize there is nothing and I could not find anything in the Django documentation. I have tried {{ value|multiply:100 }}%
without success. I know I can write my own template tag but I prefer to avoid doing that whenever possible.
UPDATE: I have also looked into the
widthratio
tag. For a value of 0.001 it goes to 0%. This is not what I want, unfortunately.
django django-templates
django django-templates
edited Jan 2 at 16:42
Scott Skiles
asked Jan 2 at 16:29


Scott SkilesScott Skiles
1,07911024
1,07911024
1
you could use{% widthratio value 1 100 %} %
but it's not very readable in my opinion since it wasn't intended to be used for that, so I'd make my own template filter which would also check for valid value (< 1).
– dirkgroten
Jan 2 at 16:37
thanks @dirkgroten. Please see update to question.
– Scott Skiles
Jan 2 at 16:43
1
So the simple answer is: Make your own filter, it's a one-liner in your case.
– dirkgroten
Jan 2 at 16:45
Sure. But the 'one-liner' needs to be written and imported in every template that it is used. I was hoping for a solution such as 'humanize' integration, ideally in standard lib. Seems like a common enough problem to not usewidthratio.
Thanks for the help.
– Scott Skiles
Jan 2 at 18:26
1
I have one file with a multitude of useful custom filters that I import everywhere. If I need to add a new filter or tag I add it there.
– dirkgroten
Jan 2 at 19:50
add a comment |
1
you could use{% widthratio value 1 100 %} %
but it's not very readable in my opinion since it wasn't intended to be used for that, so I'd make my own template filter which would also check for valid value (< 1).
– dirkgroten
Jan 2 at 16:37
thanks @dirkgroten. Please see update to question.
– Scott Skiles
Jan 2 at 16:43
1
So the simple answer is: Make your own filter, it's a one-liner in your case.
– dirkgroten
Jan 2 at 16:45
Sure. But the 'one-liner' needs to be written and imported in every template that it is used. I was hoping for a solution such as 'humanize' integration, ideally in standard lib. Seems like a common enough problem to not usewidthratio.
Thanks for the help.
– Scott Skiles
Jan 2 at 18:26
1
I have one file with a multitude of useful custom filters that I import everywhere. If I need to add a new filter or tag I add it there.
– dirkgroten
Jan 2 at 19:50
1
1
you could use
{% widthratio value 1 100 %} %
but it's not very readable in my opinion since it wasn't intended to be used for that, so I'd make my own template filter which would also check for valid value (< 1).– dirkgroten
Jan 2 at 16:37
you could use
{% widthratio value 1 100 %} %
but it's not very readable in my opinion since it wasn't intended to be used for that, so I'd make my own template filter which would also check for valid value (< 1).– dirkgroten
Jan 2 at 16:37
thanks @dirkgroten. Please see update to question.
– Scott Skiles
Jan 2 at 16:43
thanks @dirkgroten. Please see update to question.
– Scott Skiles
Jan 2 at 16:43
1
1
So the simple answer is: Make your own filter, it's a one-liner in your case.
– dirkgroten
Jan 2 at 16:45
So the simple answer is: Make your own filter, it's a one-liner in your case.
– dirkgroten
Jan 2 at 16:45
Sure. But the 'one-liner' needs to be written and imported in every template that it is used. I was hoping for a solution such as 'humanize' integration, ideally in standard lib. Seems like a common enough problem to not use
widthratio.
Thanks for the help.– Scott Skiles
Jan 2 at 18:26
Sure. But the 'one-liner' needs to be written and imported in every template that it is used. I was hoping for a solution such as 'humanize' integration, ideally in standard lib. Seems like a common enough problem to not use
widthratio.
Thanks for the help.– Scott Skiles
Jan 2 at 18:26
1
1
I have one file with a multitude of useful custom filters that I import everywhere. If I need to add a new filter or tag I add it there.
– dirkgroten
Jan 2 at 19:50
I have one file with a multitude of useful custom filters that I import everywhere. If I need to add a new filter or tag I add it there.
– dirkgroten
Jan 2 at 19:50
add a comment |
3 Answers
3
active
oldest
votes
Maybe use one of these solutions: Is there a django template filter to display percentages?
Hope it helps. If not, write your own simple filter :)
add a comment |
As Michael mentioned above, I will suggest you to write your own template tag for that : https://docs.djangoproject.com/en/2.1/howto/custom-template-tags/
add a comment |
You can do this with Django built-in template tag withraatio
{% widthratio this_value max_value max_width as width %}
If this_value is 175, max_value is 200, and max_width is 100, the image in the above example will be 88 pixels wide (because 175/200 = .875; .875 * 100 = 87.5 which is rounded up to 88).
You can also see the details here
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54009839%2fis-there-a-django-template-tag-that-will-convert-a-percentage-to-a-human-readabl%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Maybe use one of these solutions: Is there a django template filter to display percentages?
Hope it helps. If not, write your own simple filter :)
add a comment |
Maybe use one of these solutions: Is there a django template filter to display percentages?
Hope it helps. If not, write your own simple filter :)
add a comment |
Maybe use one of these solutions: Is there a django template filter to display percentages?
Hope it helps. If not, write your own simple filter :)
Maybe use one of these solutions: Is there a django template filter to display percentages?
Hope it helps. If not, write your own simple filter :)
answered Jan 2 at 17:20
Michael StachuraMichael Stachura
662
662
add a comment |
add a comment |
As Michael mentioned above, I will suggest you to write your own template tag for that : https://docs.djangoproject.com/en/2.1/howto/custom-template-tags/
add a comment |
As Michael mentioned above, I will suggest you to write your own template tag for that : https://docs.djangoproject.com/en/2.1/howto/custom-template-tags/
add a comment |
As Michael mentioned above, I will suggest you to write your own template tag for that : https://docs.djangoproject.com/en/2.1/howto/custom-template-tags/
As Michael mentioned above, I will suggest you to write your own template tag for that : https://docs.djangoproject.com/en/2.1/howto/custom-template-tags/
answered Jan 2 at 17:57


Vipin JoshiVipin Joshi
302214
302214
add a comment |
add a comment |
You can do this with Django built-in template tag withraatio
{% widthratio this_value max_value max_width as width %}
If this_value is 175, max_value is 200, and max_width is 100, the image in the above example will be 88 pixels wide (because 175/200 = .875; .875 * 100 = 87.5 which is rounded up to 88).
You can also see the details here
add a comment |
You can do this with Django built-in template tag withraatio
{% widthratio this_value max_value max_width as width %}
If this_value is 175, max_value is 200, and max_width is 100, the image in the above example will be 88 pixels wide (because 175/200 = .875; .875 * 100 = 87.5 which is rounded up to 88).
You can also see the details here
add a comment |
You can do this with Django built-in template tag withraatio
{% widthratio this_value max_value max_width as width %}
If this_value is 175, max_value is 200, and max_width is 100, the image in the above example will be 88 pixels wide (because 175/200 = .875; .875 * 100 = 87.5 which is rounded up to 88).
You can also see the details here
You can do this with Django built-in template tag withraatio
{% widthratio this_value max_value max_width as width %}
If this_value is 175, max_value is 200, and max_width is 100, the image in the above example will be 88 pixels wide (because 175/200 = .875; .875 * 100 = 87.5 which is rounded up to 88).
You can also see the details here
answered Jan 3 at 18:00
Shafikur RahmanShafikur Rahman
2,03731226
2,03731226
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54009839%2fis-there-a-django-template-tag-that-will-convert-a-percentage-to-a-human-readabl%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
you could use
{% widthratio value 1 100 %} %
but it's not very readable in my opinion since it wasn't intended to be used for that, so I'd make my own template filter which would also check for valid value (< 1).– dirkgroten
Jan 2 at 16:37
thanks @dirkgroten. Please see update to question.
– Scott Skiles
Jan 2 at 16:43
1
So the simple answer is: Make your own filter, it's a one-liner in your case.
– dirkgroten
Jan 2 at 16:45
Sure. But the 'one-liner' needs to be written and imported in every template that it is used. I was hoping for a solution such as 'humanize' integration, ideally in standard lib. Seems like a common enough problem to not use
widthratio.
Thanks for the help.– Scott Skiles
Jan 2 at 18:26
1
I have one file with a multitude of useful custom filters that I import everywhere. If I need to add a new filter or tag I add it there.
– dirkgroten
Jan 2 at 19:50