CMS Development

rainism
Membre

HubDB - group data

Résolue

Hello.

I managed to group my rows by date.
The problem I have now - it prints the ids of the dates, I can't set any datetimeformat when printing {{ group.grouper }}

Also when I add a second group option into the first one, it just doubles the content

An example of my code ({{ group.grouper|datetimeformat('%H %p') }} just doesn't work, it sends an error):

{% for group1 in table|groupby('date') %}
     <p>{{ group.grouper|datetimeformat('%H %p') }}</p>
      {% for group in table|groupby('time') %}
         <p>{{ group.grouper }}</p>
         {% for row in group.list %}
               <div class="delivery">
                 <p>{{ row.name }}</p>
                 <p><a href="{{ row.url }}">Url</a></p>
               </div>
         {% endfor %}  
      {% endfor %}
{% endfor %}

 

0 Votes
1 Solution acceptée
Anton
Solution
Expert reconnu | Partenaire solutions Diamond
Expert reconnu | Partenaire solutions Diamond

HubDB - group data

Résolue

Hi @rainism

do you have a preview-link for the page you're building?

Also - have you tried the

|pprint

filter?

documetation: click me 

 

This should give you an overview of the code and you can debug better. 

 

 

best, 

Anton

Anton Bujanowski Signature

Voir la solution dans l'envoi d'origine

2 Réponses
Anton
Solution
Expert reconnu | Partenaire solutions Diamond
Expert reconnu | Partenaire solutions Diamond

HubDB - group data

Résolue

Hi @rainism

do you have a preview-link for the page you're building?

Also - have you tried the

|pprint

filter?

documetation: click me 

 

This should give you an overview of the code and you can debug better. 

 

 

best, 

Anton

Anton Bujanowski Signature
sharonlicari
Gestionnaire de communauté
Gestionnaire de communauté

HubDB - group data

Résolue

Hey @rainism  

 

I will tag a few of our experts to learn from them.   

       

Hey @DanielSanchez @Adesignl @Anton could you please share your knowledge with @rainism?

 

Thank you & Happy Holidays

Sharon Emoticono feliz


Did you know that the Community is available in other languages?
Join regional conversations by changing your language settings !




0 Votes