Sun, 30 Mar 2025 15:24:46 +0200
Prepared new plugin release.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>DjangoLoaddataDataDialog</class> <widget class="QDialog" name="DjangoLoaddataDataDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>600</width> <height>346</height> </rect> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Preferred" vsizetype="Minimum"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="windowTitle"> <string>loaddata Command Options</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout_2"> <item> <layout class="QGridLayout" name="gridLayout_2"> <item row="0" column="0" colspan="2"> <widget class="QCheckBox" name="ignoreCheckBox"> <property name="toolTip"> <string>Select to ignore fields and models that were deleted since the creation of the fixture</string> </property> <property name="text"> <string>Ignore non-existent fields and models</string> </property> </widget> </item> <item row="1" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> <string>Application Label:</string> </property> </widget> </item> <item row="1" column="1"> <widget class="QLineEdit" name="appEdit"> <property name="toolTip"> <string>Enter the label of an application to search for fixtures</string> </property> <property name="clearButtonEnabled"> <bool>true</bool> </property> </widget> </item> </layout> </item> <item> <widget class="QGroupBox" name="groupBox"> <property name="title"> <string>Fixtures</string> </property> <layout class="QGridLayout" name="gridLayout"> <property name="horizontalSpacing"> <number>0</number> </property> <item row="0" column="0" colspan="2"> <widget class="QLabel" name="label"> <property name="text"> <string>Enter the list of fixture patterns or the path of a fixture file:</string> </property> <property name="wordWrap"> <bool>true</bool> </property> </widget> </item> <item row="1" column="0"> <widget class="QLineEdit" name="fixturesEdit"> <property name="clearButtonEnabled"> <bool>true</bool> </property> </widget> </item> <item row="1" column="1"> <widget class="QToolButton" name="fixtureFileButton"> <property name="toolTip"> <string>Select a fixture file via a file selection dialog</string> </property> </widget> </item> </layout> </widget> </item> <item> <widget class="QGroupBox" name="excludeBox"> <property name="title"> <string>Exclude</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QLabel" name="label_3"> <property name="text"> <string>Enter the list of applications and models to omit searching for fixtures:</string> </property> <property name="wordWrap"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QLineEdit" name="excludeEdit"> <property name="clearButtonEnabled"> <bool>true</bool> </property> </widget> </item> </layout> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> </property> </widget> </item> </layout> </widget> <tabstops> <tabstop>ignoreCheckBox</tabstop> <tabstop>appEdit</tabstop> <tabstop>fixturesEdit</tabstop> <tabstop>fixtureFileButton</tabstop> <tabstop>excludeEdit</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>DjangoLoaddataDataDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>248</x> <y>254</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>DjangoLoaddataDataDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>316</x> <y>260</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>