simplesitesearch 1.0.3__tar.gz → 1.0.4__tar.gz

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.
Files changed (20) hide show
  1. {simplesitesearch-1.0.3/simplesitesearch.egg-info → simplesitesearch-1.0.4}/PKG-INFO +31 -8
  2. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/README.md +30 -7
  3. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/setup.cfg +1 -1
  4. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/setup.py +1 -1
  5. simplesitesearch-1.0.4/simplesitesearch/__init__.py +3 -0
  6. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/simplesitesearch/templates/simplesitesearch/search_results.html +1 -1
  7. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/simplesitesearch/views.py +0 -2
  8. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4/simplesitesearch.egg-info}/PKG-INFO +31 -8
  9. simplesitesearch-1.0.3/simplesitesearch/__init__.py +0 -3
  10. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/LICENSE +0 -0
  11. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/MANIFEST.in +0 -0
  12. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/pyproject.toml +0 -0
  13. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/simplesitesearch/cms_apps.py +0 -0
  14. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/simplesitesearch/templates/simplesitesearch/pagination.html +0 -0
  15. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/simplesitesearch/urls.py +0 -0
  16. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/simplesitesearch.egg-info/SOURCES.txt +0 -0
  17. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/simplesitesearch.egg-info/dependency_links.txt +0 -0
  18. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/simplesitesearch.egg-info/not-zip-safe +0 -0
  19. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/simplesitesearch.egg-info/requires.txt +0 -0
  20. {simplesitesearch-1.0.3 → simplesitesearch-1.0.4}/simplesitesearch.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simplesitesearch
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Reptile Simple Site Search django app
5
5
  Home-page: https://github.com/reptiletech/simplesitesearch
6
6
  Author: Reptile Tech
@@ -158,7 +158,27 @@ The package includes two main templates:
158
158
  - `simplesitesearch/search_results.html` - Main search results template
159
159
  - `simplesitesearch/pagination.html` - Pagination template
160
160
 
161
- You can override these templates in your project by creating templates with the same names in your template directory.
161
+ #### Template Customization
162
+
163
+ You can override these templates in your project by creating templates with the same names in your template directory. The templates are designed to be easily customizable:
164
+
165
+ **Template Include Paths:**
166
+ - `simplesitesearch/search_results.html` - Main search results page
167
+ - `simplesitesearch/pagination.html` - Pagination component (included in search_results.html)
168
+
169
+ **To customize templates:**
170
+ 1. Create a `templates/simplesitesearch/` directory in your Django project
171
+ 2. Copy the template files from the package and modify them as needed
172
+ 3. Your custom templates will override the package defaults
173
+
174
+ **Example template structure:**
175
+ ```
176
+ your_project/
177
+ ├── templates/
178
+ │ └── simplesitesearch/
179
+ │ ├── search_results.html # Your custom search results template
180
+ │ └── pagination.html # Your custom pagination template
181
+ ```
162
182
 
163
183
  ### Styling
164
184
 
@@ -221,6 +241,15 @@ For support and questions, please open an issue on the [GitHub repository](https
221
241
 
222
242
  ## Changelog
223
243
 
244
+ ### 1.0.4
245
+ - Added comprehensive template customization documentation
246
+ - Clarified template include paths for easier customization
247
+ - Templates can be overridden by creating custom versions in your project's template directory
248
+
249
+ ### 1.0.3
250
+ - Allow python version 3.6, 3.7
251
+ - Allow Django version 2.2
252
+
224
253
  ### 1.0.0
225
254
  - Initial release
226
255
  - Django CMS integration
@@ -228,10 +257,4 @@ For support and questions, please open an issue on the [GitHub repository](https
228
257
  - Multi-language support
229
258
  - Basic search functionality
230
259
 
231
- ### 1.0.3
232
- - Allow python version 3.6, 3.7
233
-
234
- ### 1.0.3
235
- - Allow Django version 2.2
236
-
237
260
 
@@ -112,7 +112,27 @@ The package includes two main templates:
112
112
  - `simplesitesearch/search_results.html` - Main search results template
113
113
  - `simplesitesearch/pagination.html` - Pagination template
114
114
 
115
- You can override these templates in your project by creating templates with the same names in your template directory.
115
+ #### Template Customization
116
+
117
+ You can override these templates in your project by creating templates with the same names in your template directory. The templates are designed to be easily customizable:
118
+
119
+ **Template Include Paths:**
120
+ - `simplesitesearch/search_results.html` - Main search results page
121
+ - `simplesitesearch/pagination.html` - Pagination component (included in search_results.html)
122
+
123
+ **To customize templates:**
124
+ 1. Create a `templates/simplesitesearch/` directory in your Django project
125
+ 2. Copy the template files from the package and modify them as needed
126
+ 3. Your custom templates will override the package defaults
127
+
128
+ **Example template structure:**
129
+ ```
130
+ your_project/
131
+ ├── templates/
132
+ │ └── simplesitesearch/
133
+ │ ├── search_results.html # Your custom search results template
134
+ │ └── pagination.html # Your custom pagination template
135
+ ```
116
136
 
117
137
  ### Styling
118
138
 
@@ -175,6 +195,15 @@ For support and questions, please open an issue on the [GitHub repository](https
175
195
 
176
196
  ## Changelog
177
197
 
198
+ ### 1.0.4
199
+ - Added comprehensive template customization documentation
200
+ - Clarified template include paths for easier customization
201
+ - Templates can be overridden by creating custom versions in your project's template directory
202
+
203
+ ### 1.0.3
204
+ - Allow python version 3.6, 3.7
205
+ - Allow Django version 2.2
206
+
178
207
  ### 1.0.0
179
208
  - Initial release
180
209
  - Django CMS integration
@@ -182,10 +211,4 @@ For support and questions, please open an issue on the [GitHub repository](https
182
211
  - Multi-language support
183
212
  - Basic search functionality
184
213
 
185
- ### 1.0.3
186
- - Allow python version 3.6, 3.7
187
-
188
- ### 1.0.3
189
- - Allow Django version 2.2
190
-
191
214
 
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = simplesitesearch
3
- version = 1.0.3
3
+ version = 1.0.4
4
4
  author = Reptile Tech
5
5
  author_email = flouis@reptile.tech
6
6
  description = Reptile Simple Site Search django app
@@ -8,7 +8,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
8
8
 
9
9
  setup(
10
10
  name="simplesitesearch",
11
- version="1.0.3",
11
+ version="1.0.4",
12
12
  author="Reptile Tech",
13
13
  author_email="flouis@reptile.tech",
14
14
  description="Reptile Simple Site Search django app",
@@ -0,0 +1,3 @@
1
+ __version__ = '1.0.4'
2
+
3
+
@@ -1,4 +1,4 @@
1
- {% extends "food_service/content_fullwidth.html" %}
1
+ {% extends "pages/content_fullwidth.html" %}
2
2
  {% load i18n static cms_tags %}
3
3
 
4
4
  {% block template_class %}template_search{% endblock %}
@@ -149,5 +149,3 @@ class SearchResult(TemplateView):
149
149
  })
150
150
 
151
151
  return self.render_to_response(context)
152
-
153
-
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simplesitesearch
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Reptile Simple Site Search django app
5
5
  Home-page: https://github.com/reptiletech/simplesitesearch
6
6
  Author: Reptile Tech
@@ -158,7 +158,27 @@ The package includes two main templates:
158
158
  - `simplesitesearch/search_results.html` - Main search results template
159
159
  - `simplesitesearch/pagination.html` - Pagination template
160
160
 
161
- You can override these templates in your project by creating templates with the same names in your template directory.
161
+ #### Template Customization
162
+
163
+ You can override these templates in your project by creating templates with the same names in your template directory. The templates are designed to be easily customizable:
164
+
165
+ **Template Include Paths:**
166
+ - `simplesitesearch/search_results.html` - Main search results page
167
+ - `simplesitesearch/pagination.html` - Pagination component (included in search_results.html)
168
+
169
+ **To customize templates:**
170
+ 1. Create a `templates/simplesitesearch/` directory in your Django project
171
+ 2. Copy the template files from the package and modify them as needed
172
+ 3. Your custom templates will override the package defaults
173
+
174
+ **Example template structure:**
175
+ ```
176
+ your_project/
177
+ ├── templates/
178
+ │ └── simplesitesearch/
179
+ │ ├── search_results.html # Your custom search results template
180
+ │ └── pagination.html # Your custom pagination template
181
+ ```
162
182
 
163
183
  ### Styling
164
184
 
@@ -221,6 +241,15 @@ For support and questions, please open an issue on the [GitHub repository](https
221
241
 
222
242
  ## Changelog
223
243
 
244
+ ### 1.0.4
245
+ - Added comprehensive template customization documentation
246
+ - Clarified template include paths for easier customization
247
+ - Templates can be overridden by creating custom versions in your project's template directory
248
+
249
+ ### 1.0.3
250
+ - Allow python version 3.6, 3.7
251
+ - Allow Django version 2.2
252
+
224
253
  ### 1.0.0
225
254
  - Initial release
226
255
  - Django CMS integration
@@ -228,10 +257,4 @@ For support and questions, please open an issue on the [GitHub repository](https
228
257
  - Multi-language support
229
258
  - Basic search functionality
230
259
 
231
- ### 1.0.3
232
- - Allow python version 3.6, 3.7
233
-
234
- ### 1.0.3
235
- - Allow Django version 2.2
236
-
237
260
 
@@ -1,3 +0,0 @@
1
- __version__ = '1.0.0'
2
-
3
-