Compare commits

..

No commits in common. "4d964291b21526e5f6293a4b2449e4b5bf29aaef" and "147c84550c70f53c85e4b7f608c21217f81067ce" have entirely different histories.

3 changed files with 21 additions and 25 deletions

View File

@ -79,6 +79,7 @@ class ProjectItem(models.Model):
order = models.SmallIntegerField(default=0)
section = models.CharField(max_length=100, blank=True)
class Meta:
ordering = ['order', 'work']
@ -406,4 +407,3 @@ class Section(models.Model):
def __str__(self):
return self.name

View File

@ -12,18 +12,14 @@ dependencies = [
"django-crispy-forms",
"django-markdown2",
"django-rest-framework",
"crispy-bulma (>=0.12.0,<0.13.0)",
"django-byostorage @ git+https://gitea.tfconsulting.com.au/tris/django-byostorage.git@9903bb00888f20dfd2d39754e5ee22eeb5f36298",
"requests (>=2.32.5,<3.0.0)",
"django-storages (>=1.14.6,<2.0.0)",
"boto3 (>=1.40.20,<2.0.0)"
"crispy-bulma (>=0.12.0,<0.13.0)"
]
[tool.poetry]
packages = [{include = "*", from="app"}]
[tool.poetry.group.dev.dependencies]
django-debug-toolbar = "5.2"
django-debug-toolbar = "3.8.1"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]