Is there a Django template tag that will convert a percentage to a human readable format?












0















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.











share|improve this question




















  • 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
















0















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.











share|improve this question




















  • 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














0












0








0








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.











share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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














  • 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








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












3 Answers
3






active

oldest

votes


















1














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 :)






share|improve this answer































    1














    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/






    share|improve this answer































      1














      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






      share|improve this answer























        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
        });


        }
        });














        draft saved

        draft discarded


















        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









        1














        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 :)






        share|improve this answer




























          1














          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 :)






          share|improve this answer


























            1












            1








            1







            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 :)






            share|improve this answer













            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 :)







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jan 2 at 17:20









            Michael StachuraMichael Stachura

            662




            662

























                1














                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/






                share|improve this answer




























                  1














                  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/






                  share|improve this answer


























                    1












                    1








                    1







                    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/






                    share|improve this answer













                    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/







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Jan 2 at 17:57









                    Vipin JoshiVipin Joshi

                    302214




                    302214























                        1














                        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






                        share|improve this answer




























                          1














                          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






                          share|improve this answer


























                            1












                            1








                            1







                            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






                            share|improve this answer













                            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







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jan 3 at 18:00









                            Shafikur RahmanShafikur Rahman

                            2,03731226




                            2,03731226






























                                draft saved

                                draft discarded




















































                                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.




                                draft saved


                                draft discarded














                                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





















































                                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







                                Popular posts from this blog

                                MongoDB - Not Authorized To Execute Command

                                Npm cannot find a required file even through it is in the searched directory

                                in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith