Re: Busqueda de Django admin

2016-03-27 Thread Luis Zárate
https://docs.djangoproject.com/en/1.8/ref/contrib/admin/#django.contrib.admin.ModelAdmin.search_fields Si no es eso tiene que explicar mejor que es lo que necesita. Además recuerde que esta lista es en inglés. 2016-03-27 16:00 GMT-06:00 : > Necesito saber como modificar

Django's search

2016-03-27 Thread lzamorano03
I need know how change the search that come with Django's Admins. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To

Busqueda de Django admin

2016-03-27 Thread lzamorano03
Necesito saber como modificar la búsqueda que viene por defecto en el módulo de administración de Django. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

How delete from HTML?

2016-03-27 Thread Seti Volkylany
How delete from my text in html element for code with pysegments (style monokai) class UpdateAccountInfo(LoginRequiredMixin, View): View for update information about account of user def post(self, request, *args, **kwargs): if request.is_ajax(): result =

Re: Django Model design

2016-03-27 Thread Bob Gailer
On Mar 27, 2016 9:41 AM, "Paria Parsamanesh" wrote: > > Hi , > I am new to Django and python and I want to connect to cloudera metadata database (postgre. ) > I have background in java, and db2, to design java model classes , we used logical data model and create UML

Re: Generate different querysets depending of the website language

2016-03-27 Thread Daniel Chimeno
Hello again, In that case, I would double-check the middleware process and settings in your project. One reason could be your are placing LocaleMiddleware after your ForceDefaultLanguage, so https://github.com/django/django/blob/master/django/middleware/locale.py#L26 is setting the default

Django Model design

2016-03-27 Thread Paria Parsamanesh
Hi , I am new to Django and python and I want to connect to cloudera metadata database (postgre. ) I have background in java, and db2, to design java model classes , we used logical data model and create UML modeling tools. . Can you direct me on 1) How to make this connect from Django on

Re: Generate different querysets depending of the website language

2016-03-27 Thread Mathieu Poussin
Thanks for the tips about the translation module, in my case, I think it would be better to keep managing it the way I do as each models have complex relation with other models that are only bound to a specific language of the model (Like tags, comments, steps (This is about recipes), etc. I

Re: Django tutorial part 3 - question_id vs question.id

2016-03-27 Thread James Schneider
> > In trying to update my templates after I successfully finished part 3 of > the tutorial, I found that I could write something like > You're looking at the results of question {{ question.id }}: "{{ > question.question_text }}" > and get: You're looking at the results of question 1: "What's