Skip to content

Commit

Permalink
preparing release
Browse files Browse the repository at this point in the history
  • Loading branch information
k1nd0ne committed Mar 25, 2024
1 parent a6e6dd2 commit 764b69e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
1 change: 1 addition & 0 deletions VolWeb/voltools.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def fix_permissions(output_path):
if not current_permissions & stat.S_IROTH:
os.chmod(filepath, current_permissions | stat.S_IROTH)
logger.info(f"Updated permissions for: {filepath}")

else:
logger.warning(f"Skipping {filepath}, not a file.")
except Exception as e:
Expand Down
8 changes: 2 additions & 6 deletions main/templates/main/login.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
{% load static %}
{% load crispy_forms_tags %}
{% load bootstrap5 %}
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<link href="{% static 'main/css/lib/bootstrap.min.css' %}" rel="stylesheet" />
<script src="{% static 'main/js/lib/bootstrap.bundle.min.js' %}"></script>
<title>VolWeb</title>
</head>

Expand Down
7 changes: 2 additions & 5 deletions main/templates/main/logout.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>VolWeb</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<link href="{% static 'main/css/lib/bootstrap.min.css' %}" rel="stylesheet" />
<script src="{% static 'main/js/lib/bootstrap.bundle.min.js' %}"></script>
</head>

<body>
Expand Down

0 comments on commit 764b69e

Please sign in to comment.