|
@@ -88,8 +88,9 @@ async def tree_list():
|
|
|
return html
|
|
|
|
|
|
@app.post("/proj_kw/",response_class=HTMLResponse)
|
|
|
-async def proj_kw(kw: str = Form(...),kws:Optional[str] = Form(None)):
|
|
|
- kwlst=[]
|
|
|
+async def proj_kw(proj: str = Form(...),kws:Optional[str] = Form(None)):
|
|
|
+ print(proj)
|
|
|
+ print(kws)
|
|
|
|
|
|
|
|
|
|