image2 [django] input[type=file] 을 이용하여 첨부한 파일 저장 views.py import os def programdetailupdate(request: HttpRequest, pk: int) -> HttpResponse: std = Program() srd = Program.objects.get(id=pk) std.pk = pk if request.FILES['pimg']: uploaded_file = request.FILES['pimg'] file_name = uploaded_file.name # 현재 날짜 가져오기 curdt = datetime.now() curdty = curdt.year curdtm = curdt.month curdtd = curdt.day mloc = f'laboratory/program/{curdty}/{curdtm}/{curdtd}'.. 2023. 5. 11. [JS] SVG 이미지 이용한 별점 기능 제작 (0.1 단위) // 그누보드의 최근게시물 기능에 이용하기 위해 작성하였다. .rating-wrap{ padding: 10px; display: flex; } .rating { display: flex; align-items: center; position: relative; } .starcolor{ fill: #1976d2; } .overlay { background-color: #000; opacity: 0.5; position: absolute; top: 0; right: 0; bottom: 0; z-index: 1; transition: all 0.3s ease-in-out; } @supports (mix-blend-mode: color) { .overlay{ mix-blend-mode: color; opacit.. 2023. 3. 16. 이전 1 다음