File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9494 "partner_programs.apps.PartnerProgramsConfig" ,
9595 "mailing.apps.MailingConfig" ,
9696 "feed.apps.FeedConfig" ,
97- "rate_projects .apps.RateProjectsConfig " ,
97+ "project_rates .apps.ProjectRatesConfig " ,
9898 # Rest framework
9999 "rest_framework" ,
100100 "rest_framework_simplejwt" ,
File renamed without changes.
Original file line number Diff line number Diff line change 11from django .apps import AppConfig
22
33
4- class RateProjectsConfig (AppConfig ):
4+ class ProjectRatesConfig (AppConfig ):
55 default_auto_field = "django.db.models.BigAutoField"
6- name = "rate_projects "
6+ name = "project_rates "
77 verbose_name = "Оценка проектов"
File renamed without changes.
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ class Migration(migrations.Migration):
107107 models .ForeignKey (
108108 on_delete = django .db .models .deletion .CASCADE ,
109109 related_name = "scores" ,
110- to = "rate_projects .criteria" ,
110+ to = "project_rates .criteria" ,
111111 ),
112112 ),
113113 (
File renamed without changes.
Original file line number Diff line number Diff line change 33
44from partner_programs .models import PartnerProgram
55from projects .models import Project
6- from rate_projects .constants import VERBOSE_TYPES
6+ from project_rates .constants import VERBOSE_TYPES
77
88User = get_user_model ()
99
You can’t perform that action at this time.
0 commit comments