fastlifeweb 0.9.2__py3-none-any.whl → 0.9.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fastlife/templates/pydantic_form/Widget.jinja +1 -1
- fastlife/templating/renderer/constants.py +0 -1
- {fastlifeweb-0.9.2.dist-info → fastlifeweb-0.9.3.dist-info}/METADATA +6 -3
- {fastlifeweb-0.9.2.dist-info → fastlifeweb-0.9.3.dist-info}/RECORD +6 -6
- {fastlifeweb-0.9.2.dist-info → fastlifeweb-0.9.3.dist-info}/LICENSE +0 -0
- {fastlifeweb-0.9.2.dist-info → fastlifeweb-0.9.3.dist-info}/WHEEL +0 -0
@@ -3,7 +3,7 @@
|
|
3
3
|
<div id="{{container_id}}">
|
4
4
|
{{ content }}
|
5
5
|
{% if removable %}
|
6
|
-
<Button type="button" :onclick="
|
6
|
+
<Button type="button" :onclick={{"document.getElementById('" + container_id + "').remove()"}}>
|
7
7
|
Remove
|
8
8
|
</Button>
|
9
9
|
{% endif %}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: fastlifeweb
|
3
|
-
Version: 0.9.
|
3
|
+
Version: 0.9.3
|
4
4
|
Summary: High-level web framework
|
5
5
|
Home-page: https://github.com/mardiros/fastlife
|
6
6
|
License: BSD-derived
|
@@ -38,9 +38,12 @@ Description-Content-Type: text/markdown
|
|
38
38
|
[](https://codecov.io/gh/mardiros/fastlife)
|
39
39
|
|
40
40
|
|
41
|
-
A high-level Python web framework based on FastAPI,
|
41
|
+
A high-level Python web framework based on FastAPI, JinjaX, Pydandic and htmx.
|
42
|
+
|
43
|
+
The intention is to prototype web application fast. It generate forms directly from
|
44
|
+
Pydantic models.
|
45
|
+
|
42
46
|
|
43
|
-
The intention is to prototype fast application.
|
44
47
|
|
45
48
|
Under heavy development.
|
46
49
|
|
@@ -1673,12 +1673,12 @@ fastlife/templates/pydantic_form/Model.jinja,sha256=IRCU9PpqGLv6l7uVpVfAucWsVZbZ
|
|
1673
1673
|
fastlife/templates/pydantic_form/Sequence.jinja,sha256=hOa4cVMz-3ssH3e4AM_1PtXSVWyOtgTnPcAbY3DPUSI,1437
|
1674
1674
|
fastlife/templates/pydantic_form/Text.jinja,sha256=7OJt4rC11-XCKFKDP8lIsFy6M33pRW9ceD9K-irhiJg,461
|
1675
1675
|
fastlife/templates/pydantic_form/Union.jinja,sha256=ibSgK04qE_GND8Fm0T5pBsP2LUaVe9lZQgSlVU6Cblk,1080
|
1676
|
-
fastlife/templates/pydantic_form/Widget.jinja,sha256=
|
1676
|
+
fastlife/templates/pydantic_form/Widget.jinja,sha256=xXjesiIfaS2CWv9T11UDVHwBz6JT1FSPB6EWtp98_hA,290
|
1677
1677
|
fastlife/templating/__init__.py,sha256=UY_hSTlJKDZnkSIK-BzRD4_AXOWgHbRuvJsKAS9ljgE,307
|
1678
1678
|
fastlife/templating/binding.py,sha256=noY9QrArJGqB1X80Ny-0zk1Dg6T9mMXahjEcIiHvioo,1648
|
1679
1679
|
fastlife/templating/renderer/__init__.py,sha256=6z7MTmj3-TgP_-cKtjhUypJcXvMOmaWaPHuoROyhobE,231
|
1680
1680
|
fastlife/templating/renderer/abstract.py,sha256=9eQgshUMiVTaMcICr-RtP3Zqpu7Bji_sLif2InrxMek,3519
|
1681
|
-
fastlife/templating/renderer/constants.py,sha256=
|
1681
|
+
fastlife/templating/renderer/constants.py,sha256=x97lahQHbPzTyPuL7PBD0GqSQhKuWr7vfAwqYv0sETo,5651
|
1682
1682
|
fastlife/templating/renderer/jinjax.py,sha256=oYMsmrY7ksuDNCRNtuy4W1_meObiNFDNHFteB-cteY0,4042
|
1683
1683
|
fastlife/templating/renderer/widgets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1684
1684
|
fastlife/templating/renderer/widgets/base.py,sha256=XtD-NRacHMn9Xt_dSfWb1Emk3XEXz5jExglx23Rzzpw,2808
|
@@ -1695,7 +1695,7 @@ fastlife/testing/__init__.py,sha256=vuqwoNUd3BuIp3fm7nkvmYkIGjIimf5zUGhDkeWrg2s,
|
|
1695
1695
|
fastlife/testing/testclient.py,sha256=izNTkFgArIUrdSemNl3iiEDdsiUfnb2TtfKnZi3Jwv8,20546
|
1696
1696
|
fastlife/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1697
1697
|
fastlife/views/pydantic_form.py,sha256=KJtH_DK8em0czGPsv0XpzGUFhtycyXdeRldwiU7d_j4,1257
|
1698
|
-
fastlifeweb-0.9.
|
1699
|
-
fastlifeweb-0.9.
|
1700
|
-
fastlifeweb-0.9.
|
1701
|
-
fastlifeweb-0.9.
|
1698
|
+
fastlifeweb-0.9.3.dist-info/LICENSE,sha256=F75xSseSKMwqzFj8rswYU6NWS3VoWOc_gY3fJYf9_LI,1504
|
1699
|
+
fastlifeweb-0.9.3.dist-info/METADATA,sha256=6PrLoj7G8VIpta31Mf-ffItH7Tlc3uyy1cM_ly60apQ,1885
|
1700
|
+
fastlifeweb-0.9.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1701
|
+
fastlifeweb-0.9.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|