Exemplo n.º 1
0
from django.utils.translation import ugettext_lazy

from dimagi.pages.models.focus_mdm import (
    FeatureGroup,
    Feature,
    Support,
)

GROUP = FeatureGroup(
    title=ugettext_lazy("Messaging & notifications"),
    slug='messaging-notifications',
)

GROUP.add_features([
    Feature(
        title=ugettext_lazy("Messaging (individual and group messaging)"),
        description=ugettext_lazy(
            "Two-way messaging. IT admin can send one message to a device "
            "or device group. "),
        support=Support(True, True, True, True),
    ),
    Feature(
        title=ugettext_lazy("Notification center"),
        description=ugettext_lazy(
            "Log into FocusMDM webapp and personalize your notification settings, i.e.  "
            "specify which issues/events are important to you. You will get "
            "notifications by email for all selected issues/events.  "),
        support=Support(True, True, True, True),
    )
])
Exemplo n.º 2
0
    Feature,
    Support,
)

GROUP = FeatureGroup(
    title=ugettext_lazy("Device enrollment"),
    slug='device-enrollemnt',
)

GROUP.add_features([
    Feature(
        title=ugettext_lazy("Email enrollment"),
        description=ugettext_lazy(
            "Enroll device by sending enroll instructions to device user email."
        ),
        support=Support(True, True, True, True),
    ),
    Feature(
        title=ugettext_lazy("SMS enrollment"),
        description=ugettext_lazy(
            "Enroll device by sending enroll instructions to device user via SMS."
        ),
        support=Support(True, True, True, True),
    ),
    Feature(
        title=ugettext_lazy("Bulk enrollment"),
        description=ugettext_lazy(
            "Send multiple SMS, emails to device users at once."),
        support=Support(True, True, True, True),
    ),
    Feature(
Exemplo n.º 3
0
    Support,
)

GROUP = FeatureGroup(
    title=ugettext_lazy("Support"),
    slug='support',
)

GROUP.add_features([
    Feature(
        title=ugettext_lazy("Direct Email Support"),
        description=ugettext_lazy(
            "With direct email support, organizations have access to a "
            "direct email address to reach Dimagi staff for FocusMDM. "
            "support."),
        support=Support(True, True, True, True),
    ),
    Feature(
        title=ugettext_lazy("Phone Support"),
        description=ugettext_lazy(
            "In addition to reporting issues through our direct email "
            "support, you can call the Dimagi support line to report "
            "issues. Dimagi support staff will respond by email or over "
            "the phone within the guaranteed response time."),
        support=Support(False, False, True, True),
    ),
    Feature(
        title=ugettext_lazy("Guaranteed First Response Time"),
        description=ugettext_lazy(
            "Dimagi support staff will triage  "
            "and provide the first response to your inquiry "