componentsDjangoType 2.0.2__tar.gz → 2.0.4__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (16) hide show
  1. {componentsdjangotype-2.0.2/componentsDjangoType.egg-info → componentsdjangotype-2.0.4}/PKG-INFO +1 -1
  2. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/componentsDjangoType/management/commands/createApp.py +6 -11
  3. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4/componentsDjangoType.egg-info}/PKG-INFO +1 -1
  4. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/setup.py +1 -1
  5. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/LICENSE +0 -0
  6. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/MANIFEST.in +0 -0
  7. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/README.md +0 -0
  8. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/componentsDjangoType/__init__.py +0 -0
  9. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/componentsDjangoType/management/__init__.py +0 -0
  10. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/componentsDjangoType/management/commands/__init__.py +0 -0
  11. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/componentsDjangoType/management/commands/createcomponent.py +0 -0
  12. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/componentsDjangoType.egg-info/SOURCES.txt +0 -0
  13. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/componentsDjangoType.egg-info/dependency_links.txt +0 -0
  14. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/componentsDjangoType.egg-info/requires.txt +0 -0
  15. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/componentsDjangoType.egg-info/top_level.txt +0 -0
  16. {componentsdjangotype-2.0.2 → componentsdjangotype-2.0.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: componentsDjangoType
3
- Version: 2.0.2
3
+ Version: 2.0.4
4
4
  Summary: Comandos para crear archivos html, css y js
5
5
  Home-page: https://github.com/jose-CR/componentsDjangoType
6
6
  Author: Alejandro
@@ -109,7 +109,7 @@ class Command(BaseCommand):
109
109
  " @staticmethod\n"
110
110
  " def get_signup(request):\n"
111
111
  " if request.method == 'GET':\n"
112
- " return render(request, 'singup.html', {\n"
112
+ " return render(request, 'signup.html', {\n"
113
113
  " 'form': UserCreationForm()\n"
114
114
  " })\n"
115
115
  " elif request.method == 'POST':\n"
@@ -122,11 +122,11 @@ class Command(BaseCommand):
122
122
  " login(request, user)\n"
123
123
  " return redirect('logged')\n"
124
124
  " except IntegrityError:\n"
125
- " return render(request, 'singup.html', {\n"
125
+ " return render(request, 'signup.html', {\n"
126
126
  " 'form': UserCreationForm(),\n"
127
127
  " 'error': 'User already exists'\n"
128
128
  " })\n"
129
- " return render(request, 'singup.html', {\n"
129
+ " return render(request, 'signup.html', {\n"
130
130
  " 'form': UserCreationForm(),\n"
131
131
  " 'error': 'Passwords do not match'\n"
132
132
  " })\n\n"
@@ -312,9 +312,7 @@ urlpatterns = [
312
312
  </div>
313
313
  </div>
314
314
  {% endblock %}
315
- {% block script %}
316
- <script src="{% static 'js/alertErrors.js'%}"></script>
317
- {% endblock %}""",
315
+ """,
318
316
  'login.html': """{% extends "layouts/index.html" %}
319
317
  {% block layout %}
320
318
  {% if error %}
@@ -347,9 +345,7 @@ urlpatterns = [
347
345
  </div>
348
346
  </div>
349
347
  {% endblock %}
350
- {% block script %}
351
- <script src="{% static 'js/alertErrors.js'%}"></script>
352
- {% endblock %}""",
348
+ """,
353
349
  'logged.html': """{% extends "layouts/index.html" %}
354
350
  {% block layout %}
355
351
  <div class="layout-container">
@@ -625,8 +621,7 @@ button[type="submit"]:hover {
625
621
  {% endblock %}
626
622
  </div>
627
623
 
628
- {% block script %}
629
- {% endblock %}
624
+ <script src="{% static 'js/alertErrors.js'%}"></script>
630
625
  </body>
631
626
  </html>
632
627
  """)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: componentsDjangoType
3
- Version: 2.0.2
3
+ Version: 2.0.4
4
4
  Summary: Comandos para crear archivos html, css y js
5
5
  Home-page: https://github.com/jose-CR/componentsDjangoType
6
6
  Author: Alejandro
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='componentsDjangoType',
5
- version='2.0.2',
5
+ version='2.0.4',
6
6
  packages=find_packages(),
7
7
  include_package_data=True,
8
8
  license='MIT',