mirror of
https://github.com/django-components/django-components.git
synced 2025-08-03 13:58:16 +00:00

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Emil Stenström <emil@emilstenstrom.se>
19 lines
No EOL
539 B
HTML
19 lines
No EOL
539 B
HTML
<div class="calendar-component">
|
|
<div>Today's date is <span>{{ date }}</span></div>
|
|
<div>Your to-dos:</div>
|
|
<ul>
|
|
<li>
|
|
{% component "todo" %}
|
|
{% fill "todo_text" %}
|
|
Stop forgetting the milk!
|
|
{% endfill %}
|
|
{% endcomponent %}
|
|
</li>
|
|
<li>
|
|
{% component "todo" %}
|
|
{# As of v0.28, 'fill' tag optional for 1-slot filling if component template specifies a 'default' slot #}
|
|
Wear all-white clothes to laser tag tournament.
|
|
{% endcomponent %}
|
|
</li>
|
|
</ul>
|
|
</div> |