Posts by MARCELO PEREIRA DA SILVA • 31 points
6 posts
- 
		0 votes1 answer103 viewsQ: Form Django Loads Values but Not SavedI did a lot of research on my case on the Internet and I couldn’t find an answer that fits my problem. Following the tip of JACKSON MOURA in this answer you gave me in another case this one: Doubt… 
- 
		-1 votes1 answer111 viewsQ: Doubt About the logged in userI’ve been put on hold for lack of work opportunity in my region. Now I’ve been invited to participate in a project and I’ve come across a problem that for me is complicated. I need to start a field… 
- 
		0 votes1 answer79 viewsQ: Doubt about Python ListI have these lists: data_list_com_todos_os_dados = [x for x in queryset_data if x not in data_list_all] data_list_ que conta_repetições = { y:data_list_3.count(y) for y in set(data_list_3)} that… pythonasked MARCELO PEREIRA DA SILVA 31
- 
		0 votes1 answer24 viewsA: Django TinymcedI found this post https://github.com/divio/django-tinymce/blob/master/docs/usage.rst, which answers this question… 
- 
		0 votes1 answer24 viewsQ: Django TinymcedGood Morning guys I am with my program almost ready, at this time I’m trying to integrate DJANGO-TINYMCE to my page plus the tutorials I saw just shows how to use it in Django Adim, my doubt is… 
- 
		2 votes2 answers1344 viewsQ: How to Create an Auto Increment in Django that is not pkI’m creating a memo system with Django and it’s working fine, but I need to put in a self-improvement field that’s not pk. I have this field in my models. Memo = models.IntegerField() I need it…