eversync/file_list.html

128 lines
No EOL
5.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eversync</title>
{% load static %}
<link rel="icon" href="{% static 'favicon.ico' %}">
<link rel="stylesheet" href="{% static 'index-style.css' %}" ">
<link rel="stylesheet" href="{% static 'register-style.css' %}" ">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
</head>
<body>
<div class="header">
<div class="header-content">
<a href="/"><img src="{% static 'eversync2.png' %}" alt="Eversync Logo" style="height: 80px; margin-right: 10px; display: flex; align-items: center; gap: 5px;"></a>
<a href="/" class="logo" >eversync</a>
<div class="nav-links" style="position: relative;">
<div class="dropdown">
<button class="dropdown-toggle" style="background: none; border: none; color: white; font-size: 16px; cursor: pointer;">
Welcome, {{ user.username }} <i class="fas fa-caret-down"></i>
</button>
<div class="dropdown-menu" style="display: none; position: absolute; right: 0; background-color: #333; border: 1px solid #444; border-radius: 4px; padding: 10px; width: 184px;">
<form action="{% url 'manage' %}" method="post" style="margin: 0;">
{% csrf_token %}
<button type="submit" class="logout-button" style="background-color: transparent; color: white; border: none; cursor: pointer;">Manage Account</button>
</form>
<form action="{% url 'logoutz' %}" method="post" style="margin: 0;">
{% csrf_token %}
<button type="submit" class="logout-button" style="background-color: transparent; color: white; border: none; cursor: pointer;">Log Out</button>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="register-box">
{% if form.errors %}
<div class="error-message">
<ul>
{% for field in form %}
{% for error in field.errors %}
<li>{{ error }}</li>
{% endfor %}
{% endfor %}
{% for error in form.non_field_errors %}
<li>{{ error }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
<h1>Your Uploaded Files</h1>
<div style="display: inline-block;">
<ul>
{% for document in documents %}
<li style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;">
{% with document.file.url|lower as file_url %}
{% with file_url|slice:"-4:" as slice4 %}
{% with file_url|slice:"-5:" as slice5 %}
{% if slice4 == ".png" or slice4 == ".jpg" or slice4 == ".gif" or slice5 == ".jpeg" or slice5 == ".webp" %}
<img src="{{ document.file.url }}" style="height: 70px; margin-right: 10px;"></img>
{% else %}
<img src="{% static 'newnew.png' %}" style="height: 90px; margin-right: 10px;"></img>
{% endif %}
{% endwith %}
{% endwith %}
{% endwith %}
<a href="{{ document.file.url }}">{{ document.title }}</a>
<button onclick="deleteFile('{{ document.id }}')" style="margin-left: 10px;">Delete</button>
</li>
{% endfor %}
</ul>
</div>
<div class="divider"></div>
<div style="display: flex; justify-content: center;">
<a href="{% url 'upload_file' %}" class="register-button" style="width: 100%; text-align: center; text-decoration: none;">Upload</a>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
const toggle = document.querySelector('.dropdown-toggle');
const menu = document.querySelector('.dropdown-menu');
toggle.addEventListener('click', function () {
menu.style.display = menu.style.display === 'block' ? 'none' : 'block';
});
});
</script>
<script>
const csrfToken = '{{ csrf_token }}'
function deleteFile(fileId) {
if (confirm("Are you sure you want to delete this file?")) {
fetch(`/delete_file/${fileId}`, {
method: 'DELETE',
headers: {
'X-CSRFToken': csrfToken,
'file_id': '{{ file.id }}'
},
})
.then(response => {
if (response.ok) {
location.reload();
} else {
alert("Error deleting files");
}
})
}
}
</script>
</body>
</html>