mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-02-25 15:48:24 +00:00
FIX: Fix supplier sort
This commit is contained in:
@@ -94,7 +94,8 @@ class UserRegistrationTest(LiveServerTestCase):
|
|||||||
# Read what the error is
|
# Read what the error is
|
||||||
alert = self.browser.find_element_by_css_selector(
|
alert = self.browser.find_element_by_css_selector(
|
||||||
'div.alert-danger').text
|
'div.alert-danger').text
|
||||||
self.assertIn("password fields didn't match", alert)
|
# Note to future maintainers - mind out for smart quotes...
|
||||||
|
self.assertIn("password fields didn’t match", alert)
|
||||||
|
|
||||||
# Passwords should be empty
|
# Passwords should be empty
|
||||||
self.assertEqual(password1.get_attribute('value'), '')
|
self.assertEqual(password1.get_attribute('value'), '')
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# Generated by Django 2.0.13 on 2020-02-19 13:47
|
# Generated by Django 3.0.3 on 2020-02-19 14:44
|
||||||
|
|
||||||
from django.db import migrations
|
from django.db import migrations
|
||||||
|
|
||||||
@@ -16,6 +16,6 @@ class Migration(migrations.Migration):
|
|||||||
),
|
),
|
||||||
migrations.AlterModelOptions(
|
migrations.AlterModelOptions(
|
||||||
name='supplier',
|
name='supplier',
|
||||||
options={},
|
options={'ordering': ['name']},
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
@@ -41,6 +41,9 @@ class AssetStatus(models.Model):
|
|||||||
|
|
||||||
@reversion.register
|
@reversion.register
|
||||||
class Supplier(models.Model, RevisionMixin):
|
class Supplier(models.Model, RevisionMixin):
|
||||||
|
class Meta:
|
||||||
|
ordering = ['name']
|
||||||
|
|
||||||
name = models.CharField(max_length=80)
|
name = models.CharField(max_length=80)
|
||||||
|
|
||||||
def get_absolute_url(self):
|
def get_absolute_url(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user