9 lines
211 B
Python
9 lines
211 B
Python
|
from django.shortcuts import render
|
||
|
|
||
|
from .models import Attorney
|
||
|
|
||
|
|
||
|
def index(request, userId):
|
||
|
attorney = Attorney.objects.get(id=userId)
|
||
|
return render(request, 'attorney.html', {'attorney': attorney})
|