Questions tagged as 'django-admin'

1
answer

How to put value in Django field goes HTML?

Hello, I'm starting with Django now and wanted to know how to pass the value of the database to a Djan field using HTML to save the edit. Na minha View: @login_required def editar_aluno(request, id): aluno = Aluno.objects.get(id=id) if...
asked by 21.11.2018 / 08:09
1
answer

Disconnect another django user

Good Morning I made a control of user sessions through login and logout: In login before logging it does an insert in my table: cursor.execute("INSERT INTO usuarios_sessoes (usuario, datahorainicio) VALUES ('%s', '%s')" % (str(username),timezo...
asked by 23.10.2018 / 15:09
0
answers

Django Admin file upload when form is invalid

I have a field type file field in the template. In Admin, when the form is invalid, the file upload is lost and shows the error on the admin page without uploading the file. How do I do it?     
asked by 10.08.2018 / 19:21
1
answer

Photo upload with Model name in Django

I would like help with a task saving images with a custom name and a folder also with the current name, suppose the following Model: class ProdutoA(models.Model): nome_produto_a = models.CharField(max_length=50, verbose_name='Nome do Produ...
asked by 11.05.2018 / 18:04
1
answer

Session not identified in some logins in django

I'm doing a maintenance on a Django app version 1.5 with DRF 2.3. This app has non-standard Django user authentication, and that works well. See a summary below: accounts / views.py class Autentica(TemplateView): template_name = 'checkuser....
asked by 30.08.2017 / 18:53
0
answers

django-admin command startproject does not create manage.py file

After running the command django-admin startproject the manage.py file is not created. I'm using python 2.7.12 I tested with the versions of django-1.4.3 and django 1.5.1.
asked by 10.07.2017 / 23:16
1
answer

Set as default User logged in on the model | Django + Python3

I'm trying to learn Django, and with that I'm trying to create a simple ticket system. I've made a lot of progress in my studies, but now I'm packing on the following problem. How to do by default when saving a ticket, does Django save the...
asked by 23.02.2017 / 15:12
2
answers

Rename application in Django Admin

Good night guys, I'm trying to rename the application in django admin according to the documentation, but it did not work, I think I'm doing something wrong, the code is as follows: players control / apps.py from django.apps import AppCon...
asked by 10.02.2017 / 22:28
1
answer

Error in running django-admin.py in django 1.9

I'm trying to learn django and would like to understand this notification I get every time I run the django-admin!    Note that only Django core commands are listed as settings are not properly configured (error: Requested setting INSTALLED_A...
asked by 13.03.2016 / 22:24
2
answers

User dashboards logged in using django admin user

Good Morning I'm using Django's default user model, and I would like to have a user dashboard logged in, to check who's using the system, can you tell me if django has this information? I checked that they have a table of sessions but everyth...
asked by 28.09.2018 / 13:25