From 92b6b4eb0ed3423e1910fec432b392df1bb7984c Mon Sep 17 00:00:00 2001 From: Slava Nabatchikov Date: Sun, 19 Nov 2023 20:07:15 +0300 Subject: [PATCH] fix import --- .../src/.django-app-template/models/app_name.py-tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/src/.django-app-template/models/app_name.py-tpl b/{{cookiecutter.project_slug}}/src/.django-app-template/models/app_name.py-tpl index 07c0d0bd..0ca24cdc 100644 --- a/{{cookiecutter.project_slug}}/src/.django-app-template/models/app_name.py-tpl +++ b/{{cookiecutter.project_slug}}/src/.django-app-template/models/app_name.py-tpl @@ -1,5 +1,5 @@ from django.db import models -from app.models import DefaultModel, TimeStampedModel +from app.models import DefaultModel, TimestampedModel # Rename this file to singular form of your entity, e.g. "orders.py -> order.py". Add your class to __init__.py.