Exemplo n.º 1
0
def getrandom(role):
	c = Champion.get_random(role)
	return c
Exemplo n.º 2
0
 def post(self, request):
     champion = Champion.get_random('Support')
     context = {}
     context['champion'] = champion
     return render(request, 'champ.html', context)
Exemplo n.º 3
0
def getrandom(role):
    c = Champion.get_random(role)
    return c
Exemplo n.º 4
0
	def post(self, request):
		champion = Champion.get_random('Support')
		context = {}
		context['champion'] = champion
		return render(request,'champ.html',context)