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