HANDZCZ / genshin-stats

Repository that host code to show my genshin stats. Claims daily reward and active primo codes.
https://genshin.handz.us.to/
15 stars 5 forks source link

Question about template.mako #10

Closed Yashirow closed 2 years ago

Yashirow commented 2 years ago

Hi, I was editing template.mako for customization only and was wondering if it's possible to reverse the order of the areas in the "exploration" part ? (Mondstadt first, then Liyue, Dragonspine, ..., underground mines of the chasm) Thanks.

HANDZCZ commented 2 years ago

You can reverse the list like this:

<article class="uk-article uk-padding uk-margin-remove-top">
    <div class="uk-child-width-1-3@l uk-child-width-1-2@m uk-child-width-1-1@s uk-text-center uk-flex-center" uk-grid="masonry: false">
        <%
            user.explorations.reverse()
        %>
        %for location in user.explorations:
            <div>
                <div class="uk-card uk-card-secondary">
                    <div class="uk-card-body">
Yashirow commented 2 years ago

Oh well I feel dumb haha, anyway thanks.