CMS Development

rainism
Miembro

HubDB - group data

resolver

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 Me gusta
1 Soluciones aceptada
Anton
Solución
Experto reconocido | Partner nivel Diamond
Experto reconocido | Partner nivel Diamond

HubDB - group data

resolver

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

Ver la solución en mensaje original publicado

2 Respuestas 2
Anton
Solución
Experto reconocido | Partner nivel Diamond
Experto reconocido | Partner nivel Diamond

HubDB - group data

resolver

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
Administrador de la comunidad
Administrador de la comunidad

HubDB - group data

resolver

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