|
|
@@ -291,7 +291,9 @@ class Garden_View(ListView):
|
|
|
# 主页四级采摘进入的介绍页
|
|
|
class Garden_Intro(ListView):
|
|
|
def get(self,request):
|
|
|
- return render(request, 'outerNet/pickIntro.html', context={})
|
|
|
+ pid = request.GET.get("id")
|
|
|
+ pick = Pick_Pub.objects.get(id=pid)
|
|
|
+ return render(request, 'outerNet/pickIntro.html', context={"pick":pick})
|
|
|
def post(self,request):
|
|
|
pass
|
|
|
|