1 | from django.shortcuts import render_to_response |
---|
2 | def main(request): |
---|
3 | sp = {'wave': 'wave', 'count': 'count', 'spell': 'spell', 'target': 'target', 'caster': 'caster'} |
---|
4 | context = { 'spells': [sp] } |
---|
5 | return render_to_response('testing.html', context) |
---|