Twig - 在图库项目前面应用前导"0"

0 html symfony twig

第一次发帖,请提前原谅我.

我正在构建一个图库.我正在使用Twig.目前我的Slick carousel gallery counter在我的画廊中显示"1/4"项目.这都是犹太人.在我难倒的地方,我正试图追加一个"0",以便幻灯片显示为"01/04".

这是HTML/Twig:

<div class="nav-controls">
    {% if gallery %}
        <div class="gallery-count"><span id="current-slide">1</span> / {{ gallery.images|length }}</div>
    {% endif %}
    <section role="navigation" class="gallery-arrows{% if gallery %} active{% endif %}">
        <div class="buttons">
            <div class="prev"></div>
            <div class="next"></div>
        </div>
    </section>
</div>
Run Code Online (Sandbox Code Playgroud)

用Twig没办法做到这一点吗?

谢谢!

mal*_*rzm 6

如果您喜欢printf语法,可以使用Twig format:

<div class="gallery-count">
  <span id="current-slide">01</span> / {{ "%02d"|format(gallery.images|length) }}
</div>
Run Code Online (Sandbox Code Playgroud)