Closed hibernatedguy closed 8 years ago
Issue is with "fcm/forms.py" and "fcm/admin.py" files. from .models import get_device_model ImportError: cannot import name 'get_device_model'
get_device_model() is not implemented in models.py file,
can be solved by adding below snippet in forms.py and admin.py files,
from .utils import get_device_model()
get_device_model() is not implemented in models.py file,
can be solved by adding below snippet in forms.py and admin.py files,