diff --git a/projects/admin.py b/projects/admin.py
index 0cff389..63a806e 100644
--- a/projects/admin.py
+++ b/projects/admin.py
@@ -4,7 +4,6 @@ from .models import Project, Portfolio, PortfolioPhoto, \
Answer, Realty, Candidate, Order, Stage, Country, City,\
BuildingClassfication, ConstructionType
-
# class UserAdmin(admin.ModelAdmin):
# readonly_fields = ('pk',)
# list_display = ('email','is_active',)
diff --git a/projects/forms.py b/projects/forms.py
index dc90ee6..9a7819e 100644
--- a/projects/forms.py
+++ b/projects/forms.py
@@ -27,12 +27,15 @@ class RealtyForm(ModelForm):
model = Realty
fields = (
'name',
- # 'building_classification',
- # 'construction_type',
- # 'country',
+ 'building_classification',
+ 'construction_type',
+ 'country',
# 'city',
)
+class Realty1Form(Form):
+ pass
+
class PortfolioForm(ModelForm):
class Meta:
diff --git a/projects/templates/customer_project_create.html b/projects/templates/customer_project_create.html
index e11c548..2835c3f 100644
--- a/projects/templates/customer_project_create.html
+++ b/projects/templates/customer_project_create.html
@@ -181,7 +181,7 @@
-