Skip to content
Snippets Groups Projects
Commit 9d6292aa authored by Tomáš Valenta's avatar Tomáš Valenta
Browse files

fix broken select for signing parties

parent fdaedf20
No related branches found
No related tags found
No related merge requests found
Pipeline #11977 passed
...@@ -4,7 +4,7 @@ from django.contrib import admin ...@@ -4,7 +4,7 @@ from django.contrib import admin
from django.utils.html import format_html from django.utils.html import format_html
from fieldsets_with_inlines import FieldsetsInlineMixin from fieldsets_with_inlines import FieldsetsInlineMixin
from import_export import resources from import_export import resources
from nested_inline.admin import ( from nested_admin import (
NestedModelAdmin, NestedModelAdmin,
NestedStackedInline, NestedStackedInline,
NestedTabularInline, NestedTabularInline,
......
# Generated by Django 4.1.4 on 2023-03-23 08:17
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('contracts', '0010_alter_contractee_address_country_and_more'),
]
operations = [
migrations.AlterField(
model_name='contractee',
name='address_country',
field=models.CharField(default='CZ', max_length=256, verbose_name='Země'),
),
migrations.AlterField(
model_name='signee',
name='address_country',
field=models.CharField(default='CZ', max_length=256, verbose_name='Země'),
),
]
...@@ -54,8 +54,8 @@ INSTALLED_APPS = [ ...@@ -54,8 +54,8 @@ INSTALLED_APPS = [
"django.contrib.messages", "django.contrib.messages",
"django.contrib.staticfiles", "django.contrib.staticfiles",
"fieldsets_with_inlines", "fieldsets_with_inlines",
"nested_admin",
"import_export", "import_export",
"nested_inline",
"rangefilter", "rangefilter",
"guardian", "guardian",
"markdownx", "markdownx",
......
{% extends 'admin/base_site.html' %} {% extends 'admin/base_site.html' %}
{% load static %} {% load static %}
{% block extrastyle %}{{ block.super }} {% block extrastyle %}
{{ block.super }}
<style> <style>
:root, :root .admin-interface { :root, :root .admin-interface {
--djai-tab-bg: var(--admin-interface-header-background-color); --djai-tab-bg: var(--admin-interface-header-background-color);
......
...@@ -7,7 +7,7 @@ django-database-url==1.0.3 ...@@ -7,7 +7,7 @@ django-database-url==1.0.3
django-downloadview==2.3.0 django-downloadview==2.3.0
django-fieldsets-with-inlines==0.6 django-fieldsets-with-inlines==0.6
django-import-export==3.1.0 django-import-export==3.1.0
django-nested-inline==0.4.6 django-nested-admin==4.0.2
django-ordered-model==3.7.1 django-ordered-model==3.7.1
psycopg2-binary==2.9.5 psycopg2-binary==2.9.5
django-webpack-loader==1.8.0 django-webpack-loader==1.8.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment