Create: local static files

This commit is contained in:
Stepan Zhukovsky 2023-07-31 13:53:39 +09:00
parent e2b523a456
commit 1964e29197
19 changed files with 171 additions and 106 deletions

View File

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 495 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 930 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,6 @@
const tooltipTriggerList = document.querySelectorAll(
'[data-bs-toggle="tooltip"]'
)
const tooltipList = [...tooltipTriggerList].map(
(tooltipTriggerEl) => new bootstrap.Tooltip(tooltipTriggerEl)
)

File diff suppressed because one or more lines are too long

View File

@ -1,26 +1,43 @@
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
href="{% static 'collector/css/bootstrap.min.css' %}"
rel="stylesheet"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="{% static 'collector/img/apple-touch-icon.png' %}"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="{% static 'collector/img/favicon-32x32.png' %}"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="{% static 'collector/img/favicon-16x16.png' %}"
/>
<link rel="manifest" href="{% static 'collector/img/site.webmanifest' %}">
<title>Document</title>
</head>
<body>
<main>
<section>
{% block content %}{% endblock content %}
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"
></script>
<script>
const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]')
const tooltipList = [...tooltipTriggerList].map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl))
</script>
</section>
</main>
<script src="{% static 'collector/js/bootstrap.bundle.min.js' %}"></script>
<script src="{% static 'collector/js/jquery-3.7.0.min.js' %}"></script>
{% block bs %}{% endblock bs %}
{% block jquery %}{% endblock jquery %}
</body>
</html>

View File

@ -47,7 +47,7 @@
>GET</a>
<button
class="btn btn-outline-danger btn-sm ms-2 mt-2"
button type="button" data-bs-toggle="modal" data-bs-target="#{{ archive.id }}"
button type="button" data-bs-toggle="modal" data-bs-target="#modal-archive-del-{{ archive.id }}"
>DEL</button>
</div>
</div>
@ -71,11 +71,11 @@
</div>
<!-- Modal -->
{% for archive in ticket.archive_set.all %}
<div class="modal fade" id="{{ archive.id }}" tabindex="-1" aria-labelledby="{{ archive.id }}_Label" aria-hidden="true">
<div class="modal fade" id="modal-archive-del-{{ archive.id }}" tabindex="-1" aria-labelledby="LabelArchive-{{ archive.id }}" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="{{ archive.id }}_Label">Delete this file?</h5>
<h5 class="modal-title" id="LabelArchive-{{ archive.id }}">Delete this file?</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">

View File

@ -1,11 +1,9 @@
{% extends 'collector/base.html' %}
{% load static %}
{% block content %}
{% include 'collector/navigation.html' %}
<!-- Modal -->
<main>
<section>
<!-- Tickets -->
<div class="container mt-3">
{% for ticket in tickets %}
<div class="row">
@ -93,7 +91,7 @@
{% endfor %}
{% include 'collector/pagination.html' %}
</div>
</section>
</main>
{% endblock content %}
{% block bs %}
<script src="{% static 'collector/js/bs-tooltip.js' %}"></script>
{% endblock bs %}

View File

@ -24,5 +24,9 @@ urlpatterns = [
views.DetailTicket.as_view(),
name='ticket'
),
path('archives/<path:path>', views.download, name="download")
path(
'archives/<path:path>',
views.ArchiveHandlerView.as_view(),
name="download"
),
]

View File

@ -3,6 +3,9 @@ from django.contrib.auth.decorators import login_required
from django.http import FileResponse, Http404
from django.views import generic
from rest_framework import status
from rest_framework.response import Response
from .models import Archive, Ticket, Platform
@ -17,6 +20,24 @@ def download(request, path):
return FileResponse(file.file)
class ArchiveHandlerView(generic.View):
def get(self, request, path):
try:
file = Archive.objects.get(file=path)
except Archive.DoesNotExist:
return Http404
return FileResponse(file.file)
def delete(self, request, path):
content = {'file': path}
try:
file = Archive.objects.get(file=path)
file.delete()
return Response(content, status=status.HTTP_200_OK)
except Archive.DoesNot.Exist:
return Response(content, status=status.HTTP_204_NO_CONTENT)
class ListAllTickets(generic.ListView):
model = Ticket
template_name = 'collector/tickets.html'