分支机构的项目管理,基于Django

This commit is contained in:
2025-11-11 11:09:01 +08:00
commit f0cbf2c2ec
284 changed files with 9472 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{% extends "admin/change_form.html" %}
{% load i18n admin_urls static admin_modify %}
{% block extrahead %}
{{ block.super }}
<script src="{% static 'admin/js/custom.js' %}"></script>
{% endblock %}
{% block content %}
<h1>自定义的添加表单</h1>
{{ block.super }}
{% endblock %}

View File

@@ -0,0 +1,6 @@
{% extends "admin/change_list.html" %}
{% block actions %}
{{ block.super }}
<button type="submit" name="action" value="bulk_delete_selected" class="button" onclick="return confirm('确定要删除选中的图纸吗?')">执行批量删除</button>
{% endblock %}

View File

@@ -0,0 +1,6 @@
{% extends "admin/change_list.html" %}
{% block actions %}
{{ block.super }}
<button type="submit" name="action" value="bulk_delete_selected" class="button" onclick="return confirm('确定要删除选中的设备图片吗?')">执行批量删除</button>
{% endblock %}

View File

@@ -0,0 +1,6 @@
{% extends "admin/change_list.html" %}
{% block actions %}
{{ block.super }}
<button type="submit" name="action" value="bulk_delete_selected" class="button" onclick="return confirm('确定要删除选中的公共电子屏吗?')">执行批量删除</button>
{% endblock %}