可以在模板中增加天数吗?

huangapple go评论49阅读模式
英文:

Is it possible to add days to the date in the template?

问题

在模板中,我有今天的日期,该日期在一个循环中。我想要在循环中添加一个计数器,这样在模板中,我不是有今天的日期,而是日期 + 1天,日期 + 2天,依此类推。

  {% for day_week_list in set_day_week %}
        <div class="card mb-2">
          <div class="card-header">
            {{ day_week_list }} {{ day_data|date:'d.m' }}
          </div>
          <div class="card-body">

【注意】: 我已经将HTML代码中的特殊字符转义回原始形式。

英文:

I have today's date in my template, which is in a loop. I want to add a counter to the cycle so that in the template I don't have today's date, but date + 1 day, date + 2 days, and so on.

  {% for day_week_list in set_day_week %}
        &lt;div class=&quot;card mb-2&quot;&gt;
          &lt;div class=&quot;card-header&quot;&gt;
            {{ day_week_list }} {{ day_data|date:&#39;d.m&#39; }}
          &lt;/div&gt;
          &lt;div class=&quot;card-body&quot;&gt;

答案1

得分: -1

不,这是不可能的。要在HTML中向日期添加天数,你需要使用诸如JavaScript之类的编程语言。

英文:

No, that's not possible. To add days to a date in HTML, you need to use a programming language such as JavaScript.

huangapple
  • 本文由 发表于 2023年2月14日 00:56:16
  • 转载请务必保留本文链接:https://go.coder-hub.com/75438953.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定