mirror of
https://github.com/ae-utbm/sith.git
synced 2025-06-17 16:45:22 +00:00
Remove unused popup system and jquery-ui
This commit is contained in:
parent
42434d10ca
commit
17129af1bb
2
core/static/bundled/jquery-ui-index.js
vendored
2
core/static/bundled/jquery-ui-index.js
vendored
@ -1,2 +0,0 @@
|
|||||||
// This is only used to import jquery-ui css files
|
|
||||||
import "jquery-ui/themes/base/all.css";
|
|
@ -1,42 +1,4 @@
|
|||||||
$(() => {
|
$(() => {
|
||||||
// const buttons = $('.choose_file_button')
|
|
||||||
const popups = $(".choose_file_widget");
|
|
||||||
popups.dialog({
|
|
||||||
autoOpen: false,
|
|
||||||
modal: true,
|
|
||||||
width: "90%",
|
|
||||||
create: (event) => {
|
|
||||||
const target = $(event.target);
|
|
||||||
target.parent().css({
|
|
||||||
position: "fixed",
|
|
||||||
top: "5%",
|
|
||||||
bottom: "5%",
|
|
||||||
});
|
|
||||||
target.css("height", "300px");
|
|
||||||
},
|
|
||||||
buttons: [
|
|
||||||
{
|
|
||||||
text: "Choose",
|
|
||||||
click: function () {
|
|
||||||
$(`input[name=${$(this).attr("name")}]`).attr(
|
|
||||||
"value",
|
|
||||||
$("#file_id").attr("value"),
|
|
||||||
);
|
|
||||||
$(this).dialog("close");
|
|
||||||
},
|
|
||||||
disabled: true,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
});
|
|
||||||
$(".choose_file_button")
|
|
||||||
.button()
|
|
||||||
.on("click", function () {
|
|
||||||
const popup = popups.filter(`[name=${$(this).attr("name")}]`);
|
|
||||||
popup.html(
|
|
||||||
'<iframe src="/file/popup" width="100%" height="95%"></iframe><div id="file_id" value="null" />',
|
|
||||||
);
|
|
||||||
popup.dialog({ title: $(this).text() }).dialog("open");
|
|
||||||
});
|
|
||||||
$("#quick_notif li").click(function () {
|
$("#quick_notif li").click(function () {
|
||||||
$(this).hide();
|
$(this).hide();
|
||||||
});
|
});
|
||||||
|
@ -111,12 +111,6 @@ body {
|
|||||||
|
|
||||||
/*--------------------------------HEADER-------------------------------*/
|
/*--------------------------------HEADER-------------------------------*/
|
||||||
|
|
||||||
#popupheader {
|
|
||||||
width: 88%;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 0.3em 1%;
|
|
||||||
}
|
|
||||||
|
|
||||||
#info_boxes {
|
#info_boxes {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@ -802,25 +796,6 @@ footer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*--------------------------------JQuery-------------------------------*/
|
/*--------------------------------JQuery-------------------------------*/
|
||||||
|
|
||||||
.ui-state-active,
|
|
||||||
.ui-widget-content .ui-state-active,
|
|
||||||
.ui-widget-header .ui-state-active,
|
|
||||||
a.ui-button:active,
|
|
||||||
.ui-button:active,
|
|
||||||
.ui-button.ui-state-active:hover {
|
|
||||||
background: $primary-color;
|
|
||||||
border-color: $primary-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ui-corner-all,
|
|
||||||
.ui-corner-bottom,
|
|
||||||
.ui-corner-right,
|
|
||||||
.ui-corner-top,
|
|
||||||
.ui-corner-left {
|
|
||||||
border-radius: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#club_detail {
|
#club_detail {
|
||||||
.club_logo {
|
.club_logo {
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -14,10 +14,6 @@
|
|||||||
<link rel="stylesheet" href="{{ static('core/pagination.scss') }}">
|
<link rel="stylesheet" href="{{ static('core/pagination.scss') }}">
|
||||||
<link rel="stylesheet" href="{{ static('core/accordion.scss') }}">
|
<link rel="stylesheet" href="{{ static('core/accordion.scss') }}">
|
||||||
|
|
||||||
{% block jquery_css %}
|
|
||||||
{# Thile file is quite heavy (around 250kb), so declaring it in a block allows easy removal #}
|
|
||||||
<link rel="stylesheet" href="{{ static('bundled/jquery-ui-index.css') }}">
|
|
||||||
{% endblock %}
|
|
||||||
<link rel="preload" as="style" href="{{ static('bundled/fontawesome-index.css') }}" onload="this.onload=null;this.rel='stylesheet'">
|
<link rel="preload" as="style" href="{{ static('bundled/fontawesome-index.css') }}" onload="this.onload=null;this.rel='stylesheet'">
|
||||||
<noscript><link rel="stylesheet" href="{{ static('bundled/fontawesome-index.css') }}"></noscript>
|
<noscript><link rel="stylesheet" href="{{ static('bundled/fontawesome-index.css') }}"></noscript>
|
||||||
|
|
||||||
@ -30,11 +26,8 @@
|
|||||||
|
|
||||||
<!-- Jquery declared here to be accessible in every django widgets -->
|
<!-- Jquery declared here to be accessible in every django widgets -->
|
||||||
<script src="{{ static('bundled/vendored/jquery.min.js') }}"></script>
|
<script src="{{ static('bundled/vendored/jquery.min.js') }}"></script>
|
||||||
<script src="{{ static('bundled/vendored/jquery-ui.min.js') }}"></script>
|
|
||||||
<script src="{{ static('core/js/script.js') }}"></script>
|
<script src="{{ static('core/js/script.js') }}"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% block additional_css %}{% endblock %}
|
{% block additional_css %}{% endblock %}
|
||||||
{% block additional_js %}{% endblock %}
|
{% block additional_js %}{% endblock %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
@ -47,35 +40,28 @@
|
|||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
{% block header %}
|
{% block header %}
|
||||||
{% if not popup %}
|
{% include "core/base/header.jinja" %}
|
||||||
{% include "core/base/header.jinja" %}
|
|
||||||
|
|
||||||
{% block info_boxes %}
|
{% block info_boxes %}
|
||||||
<div id="info_boxes">
|
<div id="info_boxes">
|
||||||
{% set sith = get_sith() %}
|
{% set sith = get_sith() %}
|
||||||
{% if sith.alert_msg %}
|
{% if sith.alert_msg %}
|
||||||
<div id="alert_box">
|
<div id="alert_box">
|
||||||
{{ sith.alert_msg|markdown }}
|
{{ sith.alert_msg|markdown }}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if sith.info_msg %}
|
{% if sith.info_msg %}
|
||||||
<div id="info_box">
|
<div id="info_box">
|
||||||
{{ sith.info_msg|markdown }}
|
{{ sith.info_msg|markdown }}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% else %}
|
|
||||||
<div id="popupheader">{{ user.get_display_name() }}</div>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block nav %}
|
{% block nav %}
|
||||||
{% if not popup %}
|
{% include "core/base/navbar.jinja" %}
|
||||||
{% include "core/base/navbar.jinja" %}
|
|
||||||
{% endif %}
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
<div id="page">
|
<div id="page">
|
||||||
@ -102,24 +88,22 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% if not popup %}
|
<footer>
|
||||||
<footer>
|
{% block footer %}
|
||||||
{% block footer %}
|
<div>
|
||||||
<div>
|
<a href="{{ url('core:page', 'contacts') }}">{% trans %}Contacts{% endtrans %}</a>
|
||||||
<a href="{{ url('core:page', 'contacts') }}">{% trans %}Contacts{% endtrans %}</a>
|
<a href="{{ url('core:page', 'legals') }}">{% trans %}Legal notices{% endtrans %}</a>
|
||||||
<a href="{{ url('core:page', 'legals') }}">{% trans %}Legal notices{% endtrans %}</a>
|
<a href="{{ url('core:page', 'copyright_agent') }}">{% trans %}Intellectual property{% endtrans %}</a>
|
||||||
<a href="{{ url('core:page', 'copyright_agent') }}">{% trans %}Intellectual property{% endtrans %}</a>
|
<a href="{{ url('core:page', 'docs') }}">{% trans %}Help & Documentation{% endtrans %}</a>
|
||||||
<a href="{{ url('core:page', 'docs') }}">{% trans %}Help & Documentation{% endtrans %}</a>
|
<a href="{{ url('core:page', 'rd') }}">{% trans %}R&D{% endtrans %}</a>
|
||||||
<a href="{{ url('core:page', 'rd') }}">{% trans %}R&D{% endtrans %}</a>
|
</div>
|
||||||
</div>
|
<a rel="nofollow" href="https://github.com/ae-utbm/sith" target="#">
|
||||||
<a rel="nofollow" href="https://github.com/ae-utbm/sith" target="#">
|
<i class="fa-brands fa-github"></i>
|
||||||
<i class="fa-brands fa-github"></i>
|
{% trans %}Site created by the IT Department of the AE{% endtrans %}
|
||||||
{% trans %}Site created by the IT Department of the AE{% endtrans %}
|
</a>
|
||||||
</a>
|
{% endblock %}
|
||||||
{% endblock %}
|
<br>
|
||||||
<br>
|
</footer>
|
||||||
</footer>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% block script %}
|
{% block script %}
|
||||||
<script>
|
<script>
|
||||||
|
@ -19,9 +19,9 @@
|
|||||||
{% macro print_file_name(file) %}
|
{% macro print_file_name(file) %}
|
||||||
{% if file %}
|
{% if file %}
|
||||||
{{ print_file_name(file.parent) }} >
|
{{ print_file_name(file.parent) }} >
|
||||||
<a href="{{ url('core:file_detail', file_id=file.id, popup=popup) }}">{{ file.get_display_name() }}</a>
|
<a href="{{ url('core:file_detail', file_id=file.id) }}">{{ file.get_display_name() }}</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="{{ url('core:file_list', popup) }}">{% trans %}Files{% endtrans %}</a>
|
<a href="{{ url('core:file_list') }}">{% trans %}Files{% endtrans %}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
@ -33,16 +33,16 @@
|
|||||||
<div>
|
<div>
|
||||||
{% set home = user.home %}
|
{% set home = user.home %}
|
||||||
{% if home %}
|
{% if home %}
|
||||||
<a href="{{ url('core:file_detail', home.id, popup) }}">{% trans %}My files{% endtrans %}</a>
|
<a href="{{ url('core:file_detail', home.id) }}">{% trans %}My files{% endtrans %}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% if file %}
|
{% if file %}
|
||||||
<a href="{{ url('core:file_detail', file.id, popup) }}">{% trans %}View{% endtrans %}</a>
|
<a href="{{ url('core:file_detail', file.id) }}">{% trans %}View{% endtrans %}</a>
|
||||||
{% if can_edit(file, user) %}
|
{% if can_edit(file, user) %}
|
||||||
<a href="{{ url('core:file_edit', file_id=file.id, popup=popup) }}">{% trans %}Edit{% endtrans %}</a>
|
<a href="{{ url('core:file_edit', file_id=file.id) }}">{% trans %}Edit{% endtrans %}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if can_edit_prop(file, user) %}
|
{% if can_edit_prop(file, user) %}
|
||||||
<a href="{{ url('core:file_prop', file_id=file.id, popup=popup) }}">{% trans %}Prop{% endtrans %}</a>
|
<a href="{{ url('core:file_prop', file_id=file.id) }}">{% trans %}Prop{% endtrans %}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
<i class="fa fa-file" aria-hidden="true"></i>
|
<i class="fa fa-file" aria-hidden="true"></i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a href="{{ url('core:file_detail', file_id=f.id, popup=popup) }}">{{ f.get_display_name() }}</a></li>
|
<a href="{{ url('core:file_detail', file_id=f.id) }}">{{ f.get_display_name() }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</form>
|
</form>
|
||||||
@ -59,22 +59,9 @@
|
|||||||
<p><a href="{{ url('core:download', file_id=file.id) }}">{% trans %}Download{% endtrans %}</a></p>
|
<p><a href="{{ url('core:download', file_id=file.id) }}">{% trans %}Download{% endtrans %}</a></p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if not file.home_of and not file.home_of_club and file.parent %}
|
{% if not file.home_of and not file.home_of_club and file.parent %}
|
||||||
<p><a href="{{ url('core:file_delete', file_id=file.id, popup=popup) }}">{% trans %}Delete{% endtrans %}</a></p>
|
<p><a href="{{ url('core:file_delete', file_id=file.id) }}">{% trans %}Delete{% endtrans %}</a></p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if user.is_com_admin %}
|
{% if user.is_com_admin %}
|
||||||
<p><a href="{{ url('core:file_moderate', file_id=file.id) }}">{% trans %}Moderate{% endtrans %}</a></p>
|
<p><a href="{{ url('core:file_moderate', file_id=file.id) }}">{% trans %}Moderate{% endtrans %}</a></p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block script %}
|
|
||||||
{{ super() }}
|
|
||||||
<script>
|
|
||||||
{% if popup and file.is_file %}
|
|
||||||
parent.$("#file_id").replaceWith('<div id="file_id" value="{{ file.id }}">{{ file.name }}</div>');
|
|
||||||
parent.$(".ui-dialog-buttonpane button").button("option", "disabled", false);
|
|
||||||
{% endif %}
|
|
||||||
</script>
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
<i class="fa fa-file" aria-hidden="true"></i>
|
<i class="fa fa-file" aria-hidden="true"></i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a href="{{ url('core:file_detail', file_id=f.id, popup=popup) }}">{{ f.name }}</a></li>
|
<a href="{{ url('core:file_detail', file_id=f.id) }}">{{ f.name }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
@ -74,7 +74,7 @@
|
|||||||
{%- if this_picture -%}
|
{%- if this_picture -%}
|
||||||
{% set default_picture = this_picture.get_download_url()|tojson %}
|
{% set default_picture = this_picture.get_download_url()|tojson %}
|
||||||
{% set delete_url = (
|
{% set delete_url = (
|
||||||
url('core:file_delete', file_id=this_picture.id, popup='')
|
url('core:file_delete', file_id=this_picture.id)
|
||||||
+ "?next=" + url('core:user_edit', user_id=profile.id)
|
+ "?next=" + url('core:user_edit', user_id=profile.id)
|
||||||
)|tojson %}
|
)|tojson %}
|
||||||
{%- else -%}
|
{%- else -%}
|
||||||
|
@ -146,7 +146,7 @@ class TestUserProfilePicture:
|
|||||||
return client.post(
|
return client.post(
|
||||||
reverse(
|
reverse(
|
||||||
"core:file_delete",
|
"core:file_delete",
|
||||||
kwargs={"file_id": user.profile_pict.pk, "popup": ""},
|
kwargs={"file_id": user.profile_pict.pk},
|
||||||
query={"next": user.get_absolute_url()},
|
query={"next": user.get_absolute_url()},
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
10
core/urls.py
10
core/urls.py
@ -193,24 +193,24 @@ urlpatterns = [
|
|||||||
name="user_gift_delete",
|
name="user_gift_delete",
|
||||||
),
|
),
|
||||||
# File views
|
# File views
|
||||||
re_path(r"^file/(?P<popup>popup)?$", FileListView.as_view(), name="file_list"),
|
re_path(r"^file/$", FileListView.as_view(), name="file_list"),
|
||||||
re_path(
|
re_path(
|
||||||
r"^file/(?P<file_id>[0-9]+)/(?P<popup>popup)?$",
|
r"^file/(?P<file_id>[0-9]+)/$",
|
||||||
FileView.as_view(),
|
FileView.as_view(),
|
||||||
name="file_detail",
|
name="file_detail",
|
||||||
),
|
),
|
||||||
re_path(
|
re_path(
|
||||||
r"^file/(?P<file_id>[0-9]+)/edit/(?P<popup>popup)?$",
|
r"^file/(?P<file_id>[0-9]+)/edit/$",
|
||||||
FileEditView.as_view(),
|
FileEditView.as_view(),
|
||||||
name="file_edit",
|
name="file_edit",
|
||||||
),
|
),
|
||||||
re_path(
|
re_path(
|
||||||
r"^file/(?P<file_id>[0-9]+)/prop/(?P<popup>popup)?$",
|
r"^file/(?P<file_id>[0-9]+)/prop/$",
|
||||||
FileEditPropView.as_view(),
|
FileEditPropView.as_view(),
|
||||||
name="file_prop",
|
name="file_prop",
|
||||||
),
|
),
|
||||||
re_path(
|
re_path(
|
||||||
r"^file/(?P<file_id>[0-9]+)/delete/(?P<popup>popup)?$",
|
r"^file/(?P<file_id>[0-9]+)/delete/$",
|
||||||
FileDeleteView.as_view(),
|
FileDeleteView.as_view(),
|
||||||
name="file_delete",
|
name="file_delete",
|
||||||
),
|
),
|
||||||
|
@ -37,8 +37,6 @@ from core.views.forms import LoginForm
|
|||||||
|
|
||||||
def forbidden(request, exception):
|
def forbidden(request, exception):
|
||||||
context = {"next": request.path, "form": LoginForm()}
|
context = {"next": request.path, "form": LoginForm()}
|
||||||
if popup := request.resolver_match.kwargs.get("popup"):
|
|
||||||
context["popup"] = popup
|
|
||||||
return HttpResponseForbidden(render(request, "core/403.jinja", context=context))
|
return HttpResponseForbidden(render(request, "core/403.jinja", context=context))
|
||||||
|
|
||||||
|
|
||||||
|
@ -198,9 +198,6 @@ class FileListView(ListView):
|
|||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
kwargs = super().get_context_data(**kwargs)
|
kwargs = super().get_context_data(**kwargs)
|
||||||
kwargs["popup"] = ""
|
|
||||||
if self.kwargs.get("popup") is not None:
|
|
||||||
kwargs["popup"] = "popup"
|
|
||||||
return kwargs
|
return kwargs
|
||||||
|
|
||||||
|
|
||||||
@ -217,20 +214,7 @@ class FileEditView(CanEditMixin, UpdateView):
|
|||||||
return modelform_factory(SithFile, fields=fields)
|
return modelform_factory(SithFile, fields=fields)
|
||||||
|
|
||||||
def get_success_url(self):
|
def get_success_url(self):
|
||||||
if self.kwargs.get("popup") is not None:
|
return reverse("core:file_detail", kwargs={"file_id": self.object.id})
|
||||||
return reverse(
|
|
||||||
"core:file_detail", kwargs={"file_id": self.object.id, "popup": "popup"}
|
|
||||||
)
|
|
||||||
return reverse(
|
|
||||||
"core:file_detail", kwargs={"file_id": self.object.id, "popup": ""}
|
|
||||||
)
|
|
||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
|
||||||
kwargs = super().get_context_data(**kwargs)
|
|
||||||
kwargs["popup"] = ""
|
|
||||||
if self.kwargs.get("popup") is not None:
|
|
||||||
kwargs["popup"] = "popup"
|
|
||||||
return kwargs
|
|
||||||
|
|
||||||
|
|
||||||
class FileEditPropForm(forms.ModelForm):
|
class FileEditPropForm(forms.ModelForm):
|
||||||
@ -268,16 +252,9 @@ class FileEditPropView(CanEditPropMixin, UpdateView):
|
|||||||
def get_success_url(self):
|
def get_success_url(self):
|
||||||
return reverse(
|
return reverse(
|
||||||
"core:file_detail",
|
"core:file_detail",
|
||||||
kwargs={"file_id": self.object.id, "popup": self.kwargs.get("popup", "")},
|
kwargs={"file_id": self.object.id},
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
|
||||||
kwargs = super().get_context_data(**kwargs)
|
|
||||||
kwargs["popup"] = ""
|
|
||||||
if self.kwargs.get("popup") is not None:
|
|
||||||
kwargs["popup"] = "popup"
|
|
||||||
return kwargs
|
|
||||||
|
|
||||||
|
|
||||||
class FileView(CanViewMixin, DetailView, FormMixin):
|
class FileView(CanViewMixin, DetailView, FormMixin):
|
||||||
"""Handle the upload of new files into a folder."""
|
"""Handle the upload of new files into a folder."""
|
||||||
@ -353,15 +330,12 @@ class FileView(CanViewMixin, DetailView, FormMixin):
|
|||||||
def get_success_url(self):
|
def get_success_url(self):
|
||||||
return reverse(
|
return reverse(
|
||||||
"core:file_detail",
|
"core:file_detail",
|
||||||
kwargs={"file_id": self.object.id, "popup": self.kwargs.get("popup", "")},
|
kwargs={"file_id": self.object.id},
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
kwargs = super().get_context_data(**kwargs)
|
kwargs = super().get_context_data(**kwargs)
|
||||||
kwargs["popup"] = ""
|
|
||||||
kwargs["form"] = self.form
|
kwargs["form"] = self.form
|
||||||
if self.kwargs.get("popup") is not None:
|
|
||||||
kwargs["popup"] = "popup"
|
|
||||||
kwargs["clipboard"] = SithFile.objects.filter(
|
kwargs["clipboard"] = SithFile.objects.filter(
|
||||||
id__in=self.request.session["clipboard"]
|
id__in=self.request.session["clipboard"]
|
||||||
)
|
)
|
||||||
@ -380,19 +354,17 @@ class FileDeleteView(AllowFragment, CanEditPropMixin, DeleteView):
|
|||||||
return self.request.GET["next"]
|
return self.request.GET["next"]
|
||||||
if self.object.parent is None:
|
if self.object.parent is None:
|
||||||
return reverse(
|
return reverse(
|
||||||
"core:file_list", kwargs={"popup": self.kwargs.get("popup", "")}
|
"core:file_list",
|
||||||
)
|
)
|
||||||
return reverse(
|
return reverse(
|
||||||
"core:file_detail",
|
"core:file_detail",
|
||||||
kwargs={
|
kwargs={
|
||||||
"file_id": self.object.parent.id,
|
"file_id": self.object.parent.id,
|
||||||
"popup": self.kwargs.get("popup", ""),
|
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
kwargs = super().get_context_data(**kwargs)
|
kwargs = super().get_context_data(**kwargs)
|
||||||
kwargs["popup"] = "" if self.kwargs.get("popup") is None else "popup"
|
|
||||||
kwargs["next"] = self.request.GET.get("next", None)
|
kwargs["next"] = self.request.GET.get("next", None)
|
||||||
kwargs["previous"] = self.request.GET.get("previous", None)
|
kwargs["previous"] = self.request.GET.get("previous", None)
|
||||||
kwargs["current"] = self.request.path
|
kwargs["current"] = self.request.path
|
||||||
|
@ -86,30 +86,6 @@ class NFCTextInput(TextInput):
|
|||||||
return context
|
return context
|
||||||
|
|
||||||
|
|
||||||
class SelectFile(TextInput):
|
|
||||||
def render(self, name, value, attrs=None, renderer=None):
|
|
||||||
if attrs:
|
|
||||||
attrs["class"] = "select_file"
|
|
||||||
else:
|
|
||||||
attrs = {"class": "select_file"}
|
|
||||||
output = (
|
|
||||||
'%(content)s<div name="%(name)s" class="choose_file_widget" title="%(title)s"></div>'
|
|
||||||
% {
|
|
||||||
"content": super().render(name, value, attrs, renderer),
|
|
||||||
"title": _("Choose file"),
|
|
||||||
"name": name,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
output += (
|
|
||||||
'<span name="'
|
|
||||||
+ name
|
|
||||||
+ '" class="choose_file_button">'
|
|
||||||
+ gettext("Choose file")
|
|
||||||
+ "</span>"
|
|
||||||
)
|
|
||||||
return output
|
|
||||||
|
|
||||||
|
|
||||||
class SelectUser(TextInput):
|
class SelectUser(TextInput):
|
||||||
def render(self, name, value, attrs=None, renderer=None):
|
def render(self, name, value, attrs=None, renderer=None):
|
||||||
if attrs:
|
if attrs:
|
||||||
|
@ -5,10 +5,6 @@
|
|||||||
{% trans counter_name=counter %}{{ counter_name }} stats{% endtrans %}
|
{% trans counter_name=counter %}{{ counter_name }} stats{% endtrans %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block jquery_css %}
|
|
||||||
{# Remove jquery_css #}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h3>{% trans counter_name=counter %}{{ counter_name }} stats{% endtrans %}</h3>
|
<h3>{% trans counter_name=counter %}{{ counter_name }} stats{% endtrans %}</h3>
|
||||||
<h4>
|
<h4>
|
||||||
|
@ -4,10 +4,6 @@
|
|||||||
{% trans %}Basket state{% endtrans %}
|
{% trans %}Basket state{% endtrans %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block jquery_css %}
|
|
||||||
{# Remove jquery css #}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block additional_js %}
|
{% block additional_js %}
|
||||||
<script type="module" src="{{ static('bundled/eboutic/checkout-index.ts') }}"></script>
|
<script type="module" src="{{ static('bundled/eboutic/checkout-index.ts') }}"></script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -4,10 +4,6 @@
|
|||||||
{% trans %}Eboutic{% endtrans %}
|
{% trans %}Eboutic{% endtrans %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block jquery_css %}
|
|
||||||
{# Remove jquery css #}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block additional_js %}
|
{% block additional_js %}
|
||||||
{# This script contains the code to perform requests to manipulate the
|
{# This script contains the code to perform requests to manipulate the
|
||||||
user basket without having to reload the page #}
|
user basket without having to reload the page #}
|
||||||
|
16
package-lock.json
generated
16
package-lock.json
generated
@ -32,7 +32,6 @@
|
|||||||
"glob": "^11.0.0",
|
"glob": "^11.0.0",
|
||||||
"htmx.org": "^2.0.3",
|
"htmx.org": "^2.0.3",
|
||||||
"jquery": "^3.7.1",
|
"jquery": "^3.7.1",
|
||||||
"jquery-ui": "^1.14.0",
|
|
||||||
"js-cookie": "^3.0.5",
|
"js-cookie": "^3.0.5",
|
||||||
"lit-html": "^3.3.0",
|
"lit-html": "^3.3.0",
|
||||||
"native-file-system-adapter": "^3.0.1",
|
"native-file-system-adapter": "^3.0.1",
|
||||||
@ -3090,9 +3089,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/brace-expansion": {
|
"node_modules/brace-expansion": {
|
||||||
"version": "2.0.1",
|
"version": "2.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
|
||||||
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
|
"integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"balanced-match": "^1.0.0"
|
"balanced-match": "^1.0.0"
|
||||||
@ -4356,15 +4355,6 @@
|
|||||||
"integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==",
|
"integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/jquery-ui": {
|
|
||||||
"version": "1.14.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.14.1.tgz",
|
|
||||||
"integrity": "sha512-DhzsYH8VeIvOaxwi+B/2BCsFFT5EGjShdzOcm5DssWjtcpGWIMsn66rJciDA6jBruzNiLf1q0KvwMoX1uGNvnQ==",
|
|
||||||
"license": "MIT",
|
|
||||||
"dependencies": {
|
|
||||||
"jquery": ">=1.12.0 <5.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/js-cookie": {
|
"node_modules/js-cookie": {
|
||||||
"version": "3.0.5",
|
"version": "3.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz",
|
||||||
|
@ -59,7 +59,6 @@
|
|||||||
"glob": "^11.0.0",
|
"glob": "^11.0.0",
|
||||||
"htmx.org": "^2.0.3",
|
"htmx.org": "^2.0.3",
|
||||||
"jquery": "^3.7.1",
|
"jquery": "^3.7.1",
|
||||||
"jquery-ui": "^1.14.0",
|
|
||||||
"js-cookie": "^3.0.5",
|
"js-cookie": "^3.0.5",
|
||||||
"lit-html": "^3.3.0",
|
"lit-html": "^3.3.0",
|
||||||
"native-file-system-adapter": "^3.0.1",
|
"native-file-system-adapter": "^3.0.1",
|
||||||
|
@ -93,10 +93,6 @@ export default defineConfig((config: UserConfig) => {
|
|||||||
src: resolve(nodeModules, "jquery/dist/jquery.min.js"),
|
src: resolve(nodeModules, "jquery/dist/jquery.min.js"),
|
||||||
dest: vendored,
|
dest: vendored,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
src: resolve(nodeModules, "jquery-ui/dist/jquery-ui.min.js"),
|
|
||||||
dest: vendored,
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user