plain.admin 0.16.0__py3-none-any.whl → 0.18.0__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.
- plain/admin/assets/admin/admin.css +20 -0
- plain/admin/config.py +2 -2
- plain/admin/templates/admin/base.html +24 -25
- plain/admin/templates/admin/detail.html +3 -3
- plain/admin/templates/admin/search.html +23 -1
- plain/admin/templates/elements/admin/CheckboxField.html +1 -0
- plain/admin/templates/elements/admin/Help.html +1 -0
- plain/admin/templates/elements/admin/InputField.html +1 -0
- plain/admin/templates/elements/admin/Label.html +3 -2
- plain/admin/templates/elements/admin/SelectField.html +1 -0
- plain/admin/templates/elements/admin/Textarea.html +7 -0
- plain/admin/templates/elements/admin/TextareaField.html +6 -0
- plain/admin/templates/toolbar/toolbar.html +3 -8
- {plain_admin-0.16.0.dist-info → plain_admin-0.18.0.dist-info}/METADATA +1 -1
- {plain_admin-0.16.0.dist-info → plain_admin-0.18.0.dist-info}/RECORD +17 -15
- plain/admin/templates/admin/form.html +0 -13
- {plain_admin-0.16.0.dist-info → plain_admin-0.18.0.dist-info}/WHEEL +0 -0
- {plain_admin-0.16.0.dist-info → plain_admin-0.18.0.dist-info}/licenses/LICENSE +0 -0
@@ -61,6 +61,12 @@ main a:hover {
|
|
61
61
|
border-radius: 6px;
|
62
62
|
transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
|
63
63
|
cursor: pointer;
|
64
|
+
flex-shrink: 0;
|
65
|
+
|
66
|
+
@media (max-width: 640px) {
|
67
|
+
font-size: 12px;
|
68
|
+
padding: 6px 12px;
|
69
|
+
}
|
64
70
|
|
65
71
|
&:hover {
|
66
72
|
background-color: #2a2928;
|
@@ -80,6 +86,20 @@ main a:hover {
|
|
80
86
|
}
|
81
87
|
}
|
82
88
|
|
89
|
+
main button[type="submit"] {
|
90
|
+
background-color: #2563eb;
|
91
|
+
border-color: #2563eb;
|
92
|
+
|
93
|
+
&:hover {
|
94
|
+
background-color: #1d4ed8;
|
95
|
+
border-color: #1d4ed8;
|
96
|
+
}
|
97
|
+
&:focus {
|
98
|
+
outline: 2px solid #2563eb;
|
99
|
+
outline-offset: 2px;
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
83
103
|
/* Cards use these? */
|
84
104
|
section {
|
85
105
|
border: rgba(255, 255, 255, 0.1) 1px solid;
|
plain/admin/config.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
from importlib import import_module
|
2
2
|
from importlib.util import find_spec
|
3
3
|
|
4
|
-
from plain.packages import PackageConfig,
|
4
|
+
from plain.packages import PackageConfig, packages_registry
|
5
5
|
|
6
6
|
|
7
7
|
class Config(PackageConfig):
|
@@ -14,7 +14,7 @@ class Config(PackageConfig):
|
|
14
14
|
import_module(module_name)
|
15
15
|
|
16
16
|
# Trigger register calls to fire by importing the modules
|
17
|
-
for package_config in
|
17
|
+
for package_config in packages_registry.get_package_configs():
|
18
18
|
_import_if_exists(f"{package_config.name}.admin")
|
19
19
|
|
20
20
|
# Also trigger for the root app/admin.py module
|
@@ -22,9 +22,9 @@
|
|
22
22
|
</head>
|
23
23
|
<body class="flex min-h-screen bg-stone-950">
|
24
24
|
|
25
|
-
<nav class="fixed top-0 left-0 right-0 h-14 px-4 py-2 flex items-center justify-evenly text-sm text-white/70">
|
25
|
+
<nav class="fixed top-0 left-0 right-0 h-14 px-4 py-2 flex items-center justify-between sm:justify-evenly text-sm text-white/70 space-x-3">
|
26
26
|
<div class="flex items-center space-x-2">
|
27
|
-
<button type="button" data-toggle="#admin-sidebar,#admin-content" class="
|
27
|
+
<button type="button" data-toggle="#admin-sidebar,#admin-content" class="lg:hidden">
|
28
28
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="w-5 h-5 bi bi-list" viewBox="0 0 16 16">
|
29
29
|
<path fill-rule="evenodd" d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5"/>
|
30
30
|
</svg>
|
@@ -32,11 +32,6 @@
|
|
32
32
|
</button>
|
33
33
|
|
34
34
|
<a class="inline-flex items-center text-stone-300" href="{{ url('admin:index') }}">
|
35
|
-
<svg class="w-5 h-5 mr-2" width="160" height="125" viewBox="0 0 160 125" fill="none" xmlns="http://www.w3.org/2000/svg">
|
36
|
-
<rect x="4.78467" y="4.79785" width="150.978" height="115.404" rx="5" stroke="#ffffff" stroke-width="8"/>
|
37
|
-
<path d="M151.762 60.3705C99.2596 39.3233 80.202 66.8232 8.78467 60.3705V116.2H151.762V60.3705Z" fill="#ffffff"/>
|
38
|
-
<path d="M51.104 8.08887H108.179V10.7668C108.179 12.6998 106.612 14.2668 104.679 14.2668H54.604C52.671 14.2668 51.104 12.6998 51.104 10.7668V8.08887Z" fill="#ffffff" stroke="#ffffff"/>
|
39
|
-
</svg>
|
40
35
|
<span class="text-stone-400">Admin</span>
|
41
36
|
</a>
|
42
37
|
|
@@ -50,14 +45,14 @@
|
|
50
45
|
#}
|
51
46
|
</div>
|
52
47
|
|
53
|
-
<form method="GET" action="{{ url('admin:search') }}" class="flex flex-1 justify-center">
|
54
|
-
<div class="relative max-w-xs">
|
48
|
+
<form method="GET" action="{{ url('admin:search') }}" class="hidden sm:flex flex-1 justify-center">
|
49
|
+
<div class="relative max-w-xs flex flex-1">
|
55
50
|
<label for="query" class="sr-only">Search</label>
|
56
51
|
<input
|
57
52
|
type="text"
|
58
53
|
name="query"
|
59
54
|
id="query"
|
60
|
-
class="block w-full pr-10 pl-10 placeholder:text-center text-sm border-gray-200/10 text-white rounded-md focus:border-blue-500 focus:ring-blue-500 bg-white/5 py-1"
|
55
|
+
class="block w-full pr-10 pl-10 placeholder:text-white/30 placeholder:text-center text-sm border-gray-200/10 text-white rounded-md focus:border-blue-500 focus:ring-blue-500 bg-white/5 py-1"
|
61
56
|
placeholder="Search everything"
|
62
57
|
value="{{ global_search_query|default('') }}"
|
63
58
|
>
|
@@ -99,23 +94,26 @@
|
|
99
94
|
<div class="text-xs tracking-wide text-stone-500">Recent</div>
|
100
95
|
</div> -->
|
101
96
|
</div>
|
102
|
-
<div class="
|
103
|
-
<
|
104
|
-
|
105
|
-
|
106
|
-
<
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
97
|
+
<div class="mt-8 flex flex-col text-sm pb-3 pt-3 text-stone-400 sticky bottom-0 bg-stone-950">
|
98
|
+
<a class="sm:hidden py-1" href="{{ url('admin:search') }}">Global search</a>
|
99
|
+
<div class="flex items-center justify-between">
|
100
|
+
<div class="flex items-center truncate">
|
101
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="w-6 h-6 mr-1.5 bi bi-person-circle" viewBox="0 0 16 16">
|
102
|
+
<path d="M11 6a3 3 0 1 1-6 0 3 3 0 0 1 6 0z"/>
|
103
|
+
<path fill-rule="evenodd" d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm8-7a7 7 0 0 0-5.468 11.37C3.242 11.226 4.805 10 8 10s4.757 1.225 5.468 2.37A7 7 0 0 0 8 1z"/>
|
104
|
+
</svg>
|
105
|
+
<span class="truncate">
|
106
|
+
{{ request.user }}
|
107
|
+
</span>
|
108
|
+
</div>
|
109
|
+
<a class="ml-2 hover:text-white hover:underline flex-shrink-0" href="{{ url('logout') }}">Log out</a>
|
111
110
|
</div>
|
112
|
-
<a class="ml-2 hover:text-white hover:underline flex-shrink-0" href="{{ url('logout') }}">Log out</a>
|
113
111
|
</div>
|
114
112
|
</aside>
|
115
113
|
|
116
114
|
<div id="admin-content" data-toggle-class="x" class="absolute top-0 bottom-0 right-0 left-0 lg:left-52 bg-stone-900 border border-white/5 text-white rounded-lg overflow-auto">
|
117
|
-
<div class="flex items-center justify-between px-4 lg:px-8 sticky z-10 top-0 bg-stone-900 border-b border-white/10 py-2 lg:py-3">
|
118
|
-
<div>
|
115
|
+
<div class="flex space-x-3 items-center justify-between px-4 lg:px-8 sticky z-10 top-0 left-0 right-0 bg-stone-900 border-b border-white/10 py-2 lg:py-3">
|
116
|
+
<div class="flex-shrink-0">
|
119
117
|
{% block header %}
|
120
118
|
<div class="flex items-center">
|
121
119
|
{% block image %}
|
@@ -124,7 +122,7 @@
|
|
124
122
|
{% endif %}
|
125
123
|
{% endblock %}
|
126
124
|
<div class="max-w-prose break-all">
|
127
|
-
<h1 class="text-xl text-white/90">
|
125
|
+
<h1 class="sm:text-xl text-white/90">
|
128
126
|
{% block title %}{{ title }}{% endblock %}
|
129
127
|
</h1>
|
130
128
|
{% if description %}<p class="mt-1 text-sm text-gray-500">{{ description }}</p>{% endif %}
|
@@ -132,7 +130,8 @@
|
|
132
130
|
</div>
|
133
131
|
{% endblock %}
|
134
132
|
</div>
|
135
|
-
<div class="flex space-x-2 text-sm actions">
|
133
|
+
<div class="flex space-x-2 text-sm actions overflow-auto p-1">
|
134
|
+
{# Styled with admin.css for easier adding of elements #}
|
136
135
|
{% block actions %}{% endblock %}
|
137
136
|
{% for link, url in links.items() %}
|
138
137
|
<a href="{{ url }}">{{ link }}</a>
|
@@ -150,7 +149,7 @@
|
|
150
149
|
</div>
|
151
150
|
{% endif %}
|
152
151
|
|
153
|
-
<main class="px-4 py-6 lg:px-8 text-white/
|
152
|
+
<main class="px-4 py-6 lg:px-8 text-white/80">{% block content %}{% endblock %}</main>
|
154
153
|
</div>
|
155
154
|
|
156
155
|
</div>
|
@@ -9,10 +9,10 @@
|
|
9
9
|
Toggle raw values
|
10
10
|
</button>
|
11
11
|
|
12
|
-
<dl class="text-sm mt-3 w-full grid grid-cols-[max-content,1fr] gap-y-2 gap-x-8" style="grid-template-columns: max-content 1fr;">
|
12
|
+
<dl class="text-sm mt-3 w-full grid !grid-cols-1 sm:!grid-cols-[max-content,1fr] sm:gap-y-2 gap-x-8" style="grid-template-columns: max-content 1fr;">
|
13
13
|
{% for field in fields %}
|
14
|
-
<dt class="font-
|
15
|
-
<dd class="flex items-center">
|
14
|
+
<dt class="font-medium mt-4 sm:mt-0"><code>{{ field }}</code></dt>
|
15
|
+
<dd class="flex items-center mt-1 sm:mt-0">
|
16
16
|
{% with value=get_field_value(object, field) %}
|
17
17
|
<div class="raw-value hidden"><code>{{ value }}</code></div>
|
18
18
|
<div class="pretty-value">{% include get_field_value_template(object, field, value) with context %}</div>
|
@@ -10,6 +10,28 @@ Search
|
|
10
10
|
|
11
11
|
{% block content %}
|
12
12
|
|
13
|
+
{# Mobile search bar #}
|
14
|
+
<div class="sm:hidden">
|
15
|
+
<form method="GET" action="{{ url('admin:search') }}" class="">
|
16
|
+
<div class="relative">
|
17
|
+
<label for="query" class="sr-only">Search</label>
|
18
|
+
<input
|
19
|
+
type="text"
|
20
|
+
name="query"
|
21
|
+
id="query"
|
22
|
+
class="block w-full pr-10 pl-10 placeholder:text-center border-gray-200/10 text-white rounded-md focus:border-blue-500 focus:ring-blue-500 bg-white/5 py-1"
|
23
|
+
placeholder="Search everything"
|
24
|
+
value="{{ global_search_query|default('') }}"
|
25
|
+
>
|
26
|
+
<div class="absolute inset-y-0 left-0 flex items-center pl-4 pointer-events-none">
|
27
|
+
<svg class="h-3.5 w-3.5 text-gray-400" xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
|
28
|
+
<path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"></path>
|
29
|
+
</svg>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
</form>
|
33
|
+
</div>
|
34
|
+
|
13
35
|
{% if global_search_query %}
|
14
36
|
<div class="*:mt-14 *:empty:mt-0">
|
15
37
|
{% for view in searchable_views %}
|
@@ -21,7 +43,7 @@ Search
|
|
21
43
|
{% endfor %}
|
22
44
|
</div>
|
23
45
|
{% else %}
|
24
|
-
<p class="text-stone-500">Enter a search query in the top bar</p>
|
46
|
+
<p class="text-stone-500 hidden sm:inline">Enter a search query in the top bar</p>
|
25
47
|
{% endif %}
|
26
48
|
|
27
49
|
{% endblock %}
|
@@ -0,0 +1 @@
|
|
1
|
+
<p class="mt-2 text-sm text-gray-500">{{ help }}</p>
|
@@ -1,3 +1,4 @@
|
|
1
|
-
<label for="{{ field.html_id }}" class="block
|
2
|
-
{{ caller() }}
|
1
|
+
<label for="{{ field.html_id }}" class="block flex items-baseline justify-between">
|
2
|
+
<div class="text-sm font-medium">{{ caller() }}</div>
|
3
|
+
{% if not field.field.required %}<div class="text-white/60 text-xs">Optional</div>{% endif %}
|
3
4
|
</label>
|
@@ -1,15 +1,10 @@
|
|
1
1
|
{% if toolbar.should_render() %}
|
2
2
|
{% set exception=toolbar.request_exception() %}
|
3
3
|
<script src="{{ asset('toolbar/toolbar.js') }}"></script>
|
4
|
-
<div id="plaintoolbar" class="print:hidden text-sm py-1.5 text-stone-300
|
5
|
-
<div class="flex justify-between px-
|
4
|
+
<div id="plaintoolbar" class="print:hidden text-sm py-1.5 text-stone-300 fixed bottom-3 mx-3 max-w-full drop-shadow-sm z-30 ring-1 ring-stone-200/5 rounded-2xl lg:flex lg:flex-col -translate-x-1/2 left-1/2 max-h-[90vh] bg-gradient-to-b from-stone-950/90 to-stone-950/95 backdrop-blur-sm">
|
5
|
+
<div class="flex justify-between px-3 mx-auto space-x-4">
|
6
6
|
<div class="flex items-center">
|
7
|
-
<
|
8
|
-
<rect x="4.78467" y="4.79785" width="150.978" height="115.404" rx="5" stroke="#ffffff" stroke-width="8"/>
|
9
|
-
<path d="M151.762 60.3705C99.2596 39.3233 80.202 66.8232 8.78467 60.3705V116.2H151.762V60.3705Z" fill="#ffffff"/>
|
10
|
-
<path d="M51.104 8.08887H108.179V10.7668C108.179 12.6998 106.612 14.2668 104.679 14.2668H54.604C52.671 14.2668 51.104 12.6998 51.104 10.7668V8.08887Z" fill="#ffffff" stroke="#ffffff"/>
|
11
|
-
</svg>
|
12
|
-
<code class="ml-2 text-xs whitespace-nowrap text-mono">{{ toolbar.version }}</code>
|
7
|
+
<code class="ml-1.5 text-xs whitespace-nowrap text-mono">{{ toolbar.version }}</code>
|
13
8
|
|
14
9
|
{% if request.impersonator is defined %}
|
15
10
|
<div class="flex items-center ml-1 font-light">
|
@@ -1,13 +1,13 @@
|
|
1
1
|
plain/admin/README.md,sha256=ojs9HMwjwV4MwIxuD-6TOb8_W0uolzijqFm_beJ6WSY,6384
|
2
2
|
plain/admin/__init__.py,sha256=bPv9iftT8aLqBH6dDy-HTVXW66dQUhfIiEZ-LIUMC0Y,78
|
3
|
-
plain/admin/config.py,sha256=
|
3
|
+
plain/admin/config.py,sha256=fcNwtX1UDu0E3TQ6ASymiZbhEtbAESTpznN_8PSZXIQ,659
|
4
4
|
plain/admin/dates.py,sha256=EEhcQhHt3-k6kE9yvPdH5X6EecmUQ259xywbDBec3Dg,10253
|
5
5
|
plain/admin/default_settings.py,sha256=j7RdgGqksCmCgPO7zCcFiVV9f8yW-EULvqDcFOhQap8,127
|
6
6
|
plain/admin/middleware.py,sha256=k3yP1o3CzvLiZZSoxqq-DvAZlp4sICRauaT-kD3FJKM,398
|
7
7
|
plain/admin/templates.py,sha256=jLhJkuvqnPMBQTP-kzojFaqmFi50GZHvrVzuZCLc3rk,836
|
8
8
|
plain/admin/toolbar.py,sha256=dsZa_I-tTbaeOluCbvHGEqy4_Suw6Q_JSrKl8Eu08qY,973
|
9
9
|
plain/admin/urls.py,sha256=xGZDs103SStrlny806pqfvuA-UBUI2Xy_eXtq1VtoBI,1365
|
10
|
-
plain/admin/assets/admin/admin.css,sha256=
|
10
|
+
plain/admin/assets/admin/admin.css,sha256=qSM3Q99I2YbWxNmRjSORz9yCZ-H7oeGppTFE4QzByvk,2580
|
11
11
|
plain/admin/assets/admin/admin.js,sha256=AWD6UqPxGqJFaUhYTDWe4niTgk0thzU4gRl7qK41KNc,2759
|
12
12
|
plain/admin/assets/admin/chart.js,sha256=GZiCYXjL6SmyuSCGE0Df80QvOUkw6H2YD-zsVID05lo,205089
|
13
13
|
plain/admin/assets/admin/jquery-3.6.1.slim.min.js,sha256=W2eb4M1jdKpuZ_-_KnDgqI9X9SwGLrXtO0dknpNPJyE,72534
|
@@ -33,14 +33,13 @@ plain/admin/querystats/core.py,sha256=GLhKwWwO2OwN2wneAgfbKRQzIIjZqegZYb1fMVwilj
|
|
33
33
|
plain/admin/querystats/middleware.py,sha256=M1EVdX11H545IdZlppbSIL_h8hzBIrMELrYrcAb4aq0,3192
|
34
34
|
plain/admin/querystats/urls.py,sha256=SHYbWvxjg6kFHR-e6T4vFmh4VqyPG7gYHXxDKdB4qz0,230
|
35
35
|
plain/admin/querystats/views.py,sha256=58UpxaBp_H80Tf7azi4QcphgHbXgP5iqLDf-qZJfzRI,788
|
36
|
-
plain/admin/templates/admin/base.html,sha256=
|
36
|
+
plain/admin/templates/admin/base.html,sha256=pLv6gKOSwTaNumhzl2ThLD--lq3u-aBVnSt64f-lkdI,8307
|
37
37
|
plain/admin/templates/admin/delete.html,sha256=lNuU2G-BR6TH6NUmh7VcvjnEuFeI84rwwk_oO1jkUq0,431
|
38
|
-
plain/admin/templates/admin/detail.html,sha256=
|
39
|
-
plain/admin/templates/admin/form.html,sha256=Cc9zKjYbs_W3TaoO5teLhg35eb47JYYXEJH55wA760E,289
|
38
|
+
plain/admin/templates/admin/detail.html,sha256=NOEUvZlHM5lvpq6ZnfMYS6UUBCMSya4CmAHxZr-joJQ,787
|
40
39
|
plain/admin/templates/admin/index.html,sha256=b65tcZhv9QfvmjePySU7MmzUlpMECIXP8dBH-a3Eyxw,69
|
41
40
|
plain/admin/templates/admin/list.html,sha256=RFtGZf_g_IDiPc8udchgf63mMpfEsvzS4hUKqkvDjoM,8781
|
42
41
|
plain/admin/templates/admin/page.html,sha256=wzRR-JLs8CgCOoB3BMoYWqTMpYM0z4X2qlqdwAe0YjM,67
|
43
|
-
plain/admin/templates/admin/search.html,sha256=
|
42
|
+
plain/admin/templates/admin/search.html,sha256=zfwnXoztAFnj8OmwxJcWaqo-SKCy50bLwfwSrAnAtoQ,1799
|
44
43
|
plain/admin/templates/admin/cards/base.html,sha256=2HRIxvt5Kf0MPVv7XLQZcc7vfz3YR_WLsrVgbQtyN5I,933
|
45
44
|
plain/admin/templates/admin/cards/card.html,sha256=OWR1kF4vKtr06x_Q34Z01UmKEv_Jdq2Ws3v3RARaxCY,263
|
46
45
|
plain/admin/templates/admin/cards/chart.html,sha256=boQRaWXiZvwKkMudT3IDsRvaofv5LHgbSeWr_HEGghg,642
|
@@ -56,17 +55,20 @@ plain/admin/templates/admin/values/list.html,sha256=vqUOuJglFDbOBuKCA11VoIZHWVt_
|
|
56
55
|
plain/admin/templates/admin/values/model.html,sha256=_aX_t2VQYt_bN_jQBky5IDi49cbq7dzBLuisb3BY_is,410
|
57
56
|
plain/admin/templates/admin/values/queryset.html,sha256=YU-mDxHzinWWLUBE-oX3dOMOMyHymzrdeZyxXGMF5Ss,138
|
58
57
|
plain/admin/templates/elements/admin/Checkbox.html,sha256=2hUSWCbazaJKyZdsk2shF0qN6kSeV20HVLdRitC_KfQ,213
|
59
|
-
plain/admin/templates/elements/admin/CheckboxField.html,sha256=
|
58
|
+
plain/admin/templates/elements/admin/CheckboxField.html,sha256=oj8ur5fX5ftOjhHEQ8QcFobnPBjXrEfxFxzVpwU8-nw,274
|
60
59
|
plain/admin/templates/elements/admin/FieldErrors.html,sha256=YO150DwGG8tf8Q4d1Cf59gpchXzF-n8FSse2GqOX3cA,108
|
60
|
+
plain/admin/templates/elements/admin/Help.html,sha256=qivAiGNW97Ht9Vmq09m5bIk1IbMLlYuRIFzClVll5_Y,53
|
61
61
|
plain/admin/templates/elements/admin/Input.html,sha256=7rziKkGDgg-fQ4Yfb_hjR9pOt0DFs8UeXicN6MCoM4s,371
|
62
|
-
plain/admin/templates/elements/admin/InputField.html,sha256=
|
63
|
-
plain/admin/templates/elements/admin/Label.html,sha256=
|
62
|
+
plain/admin/templates/elements/admin/InputField.html,sha256=iZuhlGxWWQwmXsYXjGHF-5V8En24EWa7HGanDRwNvUs,220
|
63
|
+
plain/admin/templates/elements/admin/Label.html,sha256=RVZZjrv4ff_ujSmKu2M7HngIycImGhPXbja-kF03OC8,249
|
64
64
|
plain/admin/templates/elements/admin/Select.html,sha256=CUJD4cHno_bc0g_SQN0IV0a5sZL7Gx4fFB44xBse-Ic,458
|
65
|
-
plain/admin/templates/elements/admin/SelectField.html,sha256=
|
65
|
+
plain/admin/templates/elements/admin/SelectField.html,sha256=P2-vXifOs2-ie20AgLyni6Oy0iz0dAeOxBBGrZV4nIg,221
|
66
66
|
plain/admin/templates/elements/admin/Submit.html,sha256=1Lgn3Du9rXplbM3V12z2JckSaiWPlPGLP48xIZ887AA,150
|
67
|
+
plain/admin/templates/elements/admin/Textarea.html,sha256=zi9A_NAsXdZXpVTAS1KXNjQyhtVrqjyQvTHUPtf64uM,275
|
68
|
+
plain/admin/templates/elements/admin/TextareaField.html,sha256=4IOJapBNEfhUpMkkLW-gliIefZCEMn5aKyW4QagfcNw,223
|
67
69
|
plain/admin/templates/querystats/querystats.html,sha256=CMH3TDBXXxoxrICMIxiLfo4cN7ae9DMCg3WNmZR8M_o,3504
|
68
70
|
plain/admin/templates/querystats/toolbar.html,sha256=dePs614akVWUD8IlgzvQ0TREThv1ttKPj-yOPzJxmXM,3574
|
69
|
-
plain/admin/templates/toolbar/toolbar.html,sha256=
|
71
|
+
plain/admin/templates/toolbar/toolbar.html,sha256=KcGAG6kRmx60wfqEsdD5C4nDMilH-JvPjHoU6EktfaY,5985
|
70
72
|
plain/admin/views/__init__.py,sha256=nF6AENZ3Xxyi08OTRrF6e-HYBkZSFj7XBK2mVzMYqN4,846
|
71
73
|
plain/admin/views/base.py,sha256=ueMH1kvLInceIqKeR2w8HSiIT0MlAtv6i73k7ijsNUU,3943
|
72
74
|
plain/admin/views/models.py,sha256=0zSrxvZa1ARmqUeSzKqXNS5fT0bVwydsNdSOK5AUhk8,7287
|
@@ -74,7 +76,7 @@ plain/admin/views/objects.py,sha256=5jipTCJBnypM8nyD9YF-i2MLT9E4aWJbIK2GNMdtel0,
|
|
74
76
|
plain/admin/views/registry.py,sha256=aGLu9GMraLJBl60Kpfa6PXgno1vFsQZZI3YlXHClPYg,3504
|
75
77
|
plain/admin/views/types.py,sha256=ONMMdUoapgMoUVYgSIe-4YCdfvaVMQ4jgPWYiMo0pDk,178
|
76
78
|
plain/admin/views/viewsets.py,sha256=dqMlQ6kLn9iqd9BwBWAZT1S271wH1FdfM5HXbOgBMEw,1655
|
77
|
-
plain_admin-0.
|
78
|
-
plain_admin-0.
|
79
|
-
plain_admin-0.
|
80
|
-
plain_admin-0.
|
79
|
+
plain_admin-0.18.0.dist-info/METADATA,sha256=QlTNTD1FhrMs46kGdaSMvnq-tHexDY395oCw-4PtjCs,6821
|
80
|
+
plain_admin-0.18.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
81
|
+
plain_admin-0.18.0.dist-info/licenses/LICENSE,sha256=cvKM3OlqHx3ijD6e34zsSUkPvzl-ya3Dd63A6EHL94U,1500
|
82
|
+
plain_admin-0.18.0.dist-info/RECORD,,
|
@@ -1,13 +0,0 @@
|
|
1
|
-
{% extends "admin/base.html" %}
|
2
|
-
|
3
|
-
{% block content %}
|
4
|
-
|
5
|
-
<form method="post">
|
6
|
-
{{ csrf_input }}
|
7
|
-
{% block form_content %}{% endblock %}
|
8
|
-
<button class="px-5 py-2 mt-6 text-white bg-blue-600 rounded hover:bg-blue-700" type="submit">
|
9
|
-
Save
|
10
|
-
</button>
|
11
|
-
</form>
|
12
|
-
|
13
|
-
{% endblock %}
|
File without changes
|
File without changes
|