Zwischencommit und Bilder Test

This commit is contained in:
holger.trampe 2020-05-02 13:53:12 +02:00
parent 51869a10fd
commit 5de65a5f53
2 changed files with 3 additions and 2 deletions

View File

@ -323,7 +323,7 @@ def trydownloadfile(request, pk):
file = DataFile.objects.get(pk=pk) file = DataFile.objects.get(pk=pk)
checkuserrights = checkUserDirRights(request, file.parent, request.user.id) checkuserrights = checkUserDirRights(request, file.parent, request.user.id)
if(checkuserrights): if(checkuserrights):
file_path = os.path.join(settings.MEDIA_ROOT, file.file.name) file_path = os.path.join(settings.MEDIA_URL, file.file.name)
if os.path.exists(file_path): if os.path.exists(file_path):
with open(file_path, 'rb') as fh: with open(file_path, 'rb') as fh:
file_ext = file.name.split(".")[1] file_ext = file.name.split(".")[1]

View File

@ -262,7 +262,8 @@ class AgencyCreateView(CreateView):
@login_required @login_required
def dashboard(request): def dashboard(request):
print("MEIDA ROOT:" + settings.MEDIA_ROOT)
print("MEDIA URL:" + settings.MEDIA_URL)
# UPDATE FUNCTIONS BY NEW MODEL-CHANGES FOR COPIEN SOME DATA # UPDATE FUNCTIONS BY NEW MODEL-CHANGES FOR COPIEN SOME DATA
toUpdate(request) toUpdate(request)