TimberTrust/business_information/views.py

7 lines
291 B
Python
Raw Normal View History

2024-03-27 14:50:00 +08:00
from django.shortcuts import render, get_object_or_404
from .models import Company
def company_detail(request, enterprise_id):
company = get_object_or_404(Company, enterprise_id=enterprise_id)
return render(request, 'business_information/company_detail.html', {'company': company})