Deployed 60651f30 to dev with MkDocs 1.6.1 and mike 2.1.3

This commit is contained in:
github-actions 2025-10-04 07:08:50 +00:00
parent e8d3c0a3d0
commit 7dde1970d4
73 changed files with 312 additions and 246 deletions

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -145,7 +145,7 @@
<a id=__codelineno-10-4 name=__codelineno-10-4 href=#__codelineno-10-4></a><span class=p>}</span>
</code></pre></div> <h2 id=fill>fill<a class=headerlink href=#fill title="Permanent link">¤</a></h2> <div class=highlight><pre><span></span><code><a id=__codelineno-11-1 name=__codelineno-11-1 href=#__codelineno-11-1></a><span class=cp>{%</span> <span class=k>fill</span> <span class=nv>name</span><span class=o>:</span> <span class=nv>str</span><span class=o>,</span> <span class=o>*,</span> <span class=nv>data</span><span class=o>:</span> <span class=nv>Optional</span><span class=o>[</span><span class=nv>str</span><span class=o>]</span> <span class=o>=</span> <span class=kp>None</span><span class=o>,</span> <span class=nv>fallback</span><span class=o>:</span> <span class=nv>Optional</span><span class=o>[</span><span class=nv>str</span><span class=o>]</span> <span class=o>=</span> <span class=kp>None</span><span class=o>,</span> <span class=nv>body</span><span class=o>:</span> <span class=nv>Union</span><span class=o>[</span><span class=nv>str</span><span class=o>,</span> <span class=nv>django.utils.safestring.SafeString</span><span class=o>,</span> <span class=nv>django_components.slots.SlotFunc</span><span class=o>[~</span><span class=nv>TSlotData</span><span class=o>],</span> <span class=nv>django_components.slots.Slot</span><span class=o>[~</span><span class=nv>TSlotData</span><span class=o>],</span> <span class=nv>NoneType</span><span class=o>]</span> <span class=o>=</span> <span class=kp>None</span><span class=o>,</span> <span class=nv>default</span><span class=o>:</span> <span class=nv>Optional</span><span class=o>[</span><span class=nv>str</span><span class=o>]</span> <span class=o>=</span> <span class=kp>None</span> <span class=cp>%}</span>
<a id=__codelineno-11-2 name=__codelineno-11-2 href=#__codelineno-11-2></a><span class=cp>{%</span> <span class=k>endfill</span> <span class=cp>%}</span>
</code></pre></div> <p><a href=https://github.com/django-components/django-components/tree/master/src/django_components/templatetags/component_tags.py#L988 target=_blank>See source code</a></p> <p>Use <a href=../template_tags#fill><code>{% fill %}</code></a> tag to insert content into component's <a href=../../concepts/fundamentals/slots>slots</a>.</p> <p><a href=../template_tags#fill><code>{% fill %}</code></a> tag may be used only within a <code>{% component %}..{% endcomponent %}</code> block, and raises a <code>TemplateSyntaxError</code> if used outside of a component.</p> <p><strong>Args:</strong></p> <ul> <li><code>name</code> (str, required): Name of the slot to insert this content into. Use <code>"default"</code> for the <a href=../../concepts/fundamentals/slots#default-slot>default slot</a>.</li> <li><code>data</code> (str, optional): This argument allows you to access the data passed to the slot under the specified variable name. See <a href=../../concepts/fundamentals/slots#slot-data>Slot data</a>.</li> <li><code>fallback</code> (str, optional): This argument allows you to access the original content of the slot under the specified variable name. See <a href=../../concepts/fundamentals/slots#slot-fallback>Slot fallback</a>.</li> </ul> <p><strong>Example:</strong></p> <div class=highlight><pre><span></span><code><a id=__codelineno-12-1 name=__codelineno-12-1 href=#__codelineno-12-1></a><span class=cp>{%</span> <span class=k>component</span> <span class=s2>&quot;my_table&quot;</span> <span class=cp>%}</span>
</code></pre></div> <p><a href=https://github.com/django-components/django-components/tree/master/src/django_components/templatetags/component_tags.py#L990 target=_blank>See source code</a></p> <p>Use <a href=../template_tags#fill><code>{% fill %}</code></a> tag to insert content into component's <a href=../../concepts/fundamentals/slots>slots</a>.</p> <p><a href=../template_tags#fill><code>{% fill %}</code></a> tag may be used only within a <code>{% component %}..{% endcomponent %}</code> block, and raises a <code>TemplateSyntaxError</code> if used outside of a component.</p> <p><strong>Args:</strong></p> <ul> <li><code>name</code> (str, required): Name of the slot to insert this content into. Use <code>"default"</code> for the <a href=../../concepts/fundamentals/slots#default-slot>default slot</a>.</li> <li><code>data</code> (str, optional): This argument allows you to access the data passed to the slot under the specified variable name. See <a href=../../concepts/fundamentals/slots#slot-data>Slot data</a>.</li> <li><code>fallback</code> (str, optional): This argument allows you to access the original content of the slot under the specified variable name. See <a href=../../concepts/fundamentals/slots#slot-fallback>Slot fallback</a>.</li> </ul> <p><strong>Example:</strong></p> <div class=highlight><pre><span></span><code><a id=__codelineno-12-1 name=__codelineno-12-1 href=#__codelineno-12-1></a><span class=cp>{%</span> <span class=k>component</span> <span class=s2>&quot;my_table&quot;</span> <span class=cp>%}</span>
<a id=__codelineno-12-2 name=__codelineno-12-2 href=#__codelineno-12-2></a><span class=x> </span><span class=cp>{%</span> <span class=k>fill</span> <span class=s2>&quot;pagination&quot;</span> <span class=cp>%}</span>
<a id=__codelineno-12-3 name=__codelineno-12-3 href=#__codelineno-12-3></a><span class=x> &lt; 1 | 2 | 3 &gt;</span>
<a id=__codelineno-12-4 name=__codelineno-12-4 href=#__codelineno-12-4></a><span class=x> </span><span class=cp>{%</span> <span class=k>endfill</span> <span class=cp>%}</span>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -2,542 +2,542 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://django-components.github.io/django-components/latest/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/migrating_from_safer_staticfiles/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/community/code_of_conduct/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/community/contributing/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/community/development/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/community/help/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/community/devguides/dependency_mgmt/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/community/devguides/slot_rendering/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/community/devguides/slots_and_blocks/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/component_caching/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/component_context_scope/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/component_libraries/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/component_registry/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/extensions/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/hooks/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/html_fragments/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/provide_inject/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/rendering_js_css/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/tag_formatters/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/template_tags/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/testing/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/autodiscovery/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/component_defaults/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/component_views_urls/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/html_attributes/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/html_js_css_files/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/html_js_css_variables/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/http_request/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/render_api/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/rendering_components/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/secondary_js_css_files/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/single_file_components/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/slots/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/subclassing_components/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/template_tag_syntax/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/typing_and_validation/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/examples/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/examples/form/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/examples/tabs/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/getting_started/adding_js_and_css/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/getting_started/adding_slots/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/getting_started/components_in_templates/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/getting_started/installation/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/getting_started/parametrising_components/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/getting_started/rendering_components/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/getting_started/your_first_component/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/guides/other/troubleshooting/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/guides/setup/caching/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/guides/setup/development_server/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/overview/compatibility/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/overview/license/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/overview/performance/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/overview/security_notes/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/overview/welcome/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/plugins/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/api/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/commands/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/components/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/exceptions/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/extension_commands/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/extension_hooks/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/extension_urls/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/settings/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/signals/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/tag_formatters/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/template_tags/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/template_variables/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/testing_api/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/reference/urls/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.100/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.110/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.111/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.112/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.113/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.114/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.115/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.116/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.117/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.118/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.119/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.120/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.121/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.122/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.123/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.124/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.125/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.126/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.127/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.128/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.129/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.130/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.131/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.132/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.133/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.134/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.135/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.136/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.137/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.138/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.139.0/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.139.1/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.140.0/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.140.1/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.141.0/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.141.1/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.141.2/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.141.3/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.141.4/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.141.5/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.141.6/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.142.0/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.17/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.22/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.26/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.27/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.28/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.34/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.50/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.67/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.70/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.74/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.77/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.79/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.80/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.81/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.85/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.90/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.92/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.93/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.94/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.95/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.96/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/releases/v0.97/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
<url>
<loc>https://django-components.github.io/django-components/latest/upgrading/v0/</loc>
<lastmod>2025-10-03</lastmod>
<lastmod>2025-10-04</lastmod>
</url>
</urlset>

Binary file not shown.

View file

@ -1,7 +1,7 @@
[
{
"version": "dev",
"title": "dev (eee3910)",
"title": "dev (60651f3)",
"aliases": []
},
{