Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyClassHasNoInitInspection
/
meta.py
blob: 88b0044d0259cd34bc79df2d1f2df0f9ed008f24 [
file
] [
log
] [
blame
]
from
django
.
db
import
models
class
BasePage
(
models
.
Model
):
title
=
models
.
CharField
(
max_length
=
50
)
slug
=
models
.
CharField
(
max_length
=
50
)
class
Meta
:
abstract
=
True