Posts by Anderson Pissulin • 1 point
2 posts
- 
		0 votes3 answers1776 viewsA: Get user logged in to Django globallyHow to display the username logged in to a system/site using Django 1.7+. Just put the line below in the template (html page) to display the full name: {{ user.get_full_name }} To display the… 
- 
		-1 votes1 answer222 viewsQ: Manipulating dictionaries within other dictionariesAlunos = { 111: { 'nome' : 'Joao', 'curso' : 'ADS' }, 222: { 'nome' : 'Pedro', 'curso' : 'SI' }, 333: { 'nome' : 'Maria', 'curso' : 'SI' } } I need to write a script to show the names of the… pythonasked Anderson Pissulin 1