Exemplo n.º 1
0
Arquivo: models.py Projeto: simone/upy
    class StaticElement(G11nBase):
        """
        It's a model that allows you to write some static element to use in your template
        """
        name = models.CharField(max_length=50,
                                help_text=_(u"Set the element's name."),
                                verbose_name=_(u"Name"))
        category = models.ForeignKey(u"StaticElementCategory",
                                     null=True,
                                     blank=True,
                                     on_delete=models.SET_NULL,
                                     help_text=_(u"Choose a category."),
                                     verbose_name=_(u"Category"))

        def __unicode__(self):
            return u"%s" % (self.name)

        class G11nMeta:
            g11n = 'StaticElementG11n'
            fieldname = 'staticelement'

        class Meta:
            verbose_name = _(u"Static Element")
            verbose_name_plural = _(u"Static Elements")
            ordering = ['name']
Exemplo n.º 2
0
class CustomLink(PositionImage):
    """
    This object links the installed_apps with an icon to use 
    if CustomAdmin.use_app_icons is True
    """
    link_url = models.CharField(
        max_length=250,
        default="/admin/",
        help_text=_(u"Select the url you want to link"),
        verbose_name=_(u"Link Url"))
    verbose_url_name = models.CharField(
        max_length=250,
        unique=True,
        help_text=_(u"Write the verbose name to show"),
        verbose_name=_(u"Verbose url name"))
    image = ImageSpecField([ResizeToFit(128, 128)],
                           image_field='original_image',
                           format='png')

    def __unicode__(self):
        return u"%s" % (self.link_url)

    class Meta:
        verbose_name = _(u"Custom Link")
        verbose_name_plural = _(u"Custom Link")
        ordering = ['position']
Exemplo n.º 3
0
Arquivo: models.py Projeto: simone/upy
class StaticElementCategory(models.Model):
    """
    It's simply e category
    """
    name = models.CharField(max_length=50,
                            help_text=_(u"Category name."),
                            verbose_name=_(u"Name"))

    def __unicode__(self):
        return u"%s" % (self.name)

    class Meta:
        verbose_name = _(u"Category")
        verbose_name_plural = _(u"Categories")
        ordering = ['name']
Exemplo n.º 4
0
Arquivo: models.py Projeto: simone/upy
    class StaticElement(models.Model):
        """
        If g11n it isn't in installed app then StaticElement is a model that
        contains also fields for textual contents
        """
        name = models.CharField(max_length=50,
                                help_text=_(u"Set the element's name."),
                                verbose_name=_(u"Name"))
        category = models.ForeignKey(u"StaticElementCategory",
                                     null=True,
                                     blank=True,
                                     on_delete=models.SET_NULL,
                                     help_text=_(u"Choose a category."),
                                     verbose_name=_(u"Category"))
        alias = models.CharField(max_length=50,
                                 help_text=_(u"Set the element's alias."),
                                 verbose_name=_(u"Alias"))
        html = RichTextField(blank=True, verbose_name=_(u"HTML"))

        def __unicode__(self):
            return u"%s" % (self.name)

        class Meta:
            verbose_name = _(u"Static Element")
            verbose_name_plural = _(u"Static Elements")
            ordering = ['name']
Exemplo n.º 5
0
Arquivo: models.py Projeto: simone/upy
    class StaticElementG11n(G11nModel):
        """
        It's translate related StaticElement's instance
        """
        alias = models.CharField(max_length=50,
                                 help_text=_(u"Set the element's alias."),
                                 verbose_name=_(u"Alias"))
        html = RichTextField(blank=True, verbose_name=_(u"HTML"))
        staticelement = models.ForeignKey(
            u"StaticElement",
            help_text=_(u"Choose a Static element to associate."),
            verbose_name=_(u"Static element"))

        def __unicode__(self):
            return u"%s (%s)" % (self.alias, self.language)

        class Meta:
            verbose_name = _(u"Static Element G11n")
            verbose_name_plural = _(u"Static Element G11n")
Exemplo n.º 6
0
class CustomModel(PositionImage):
    """
    This object links models in  installed_apps with an icon to use if CustomAdmin.view_mode == "use_model_icons" or CustomAdmin.view_mode == "use_inner_model_icons"
    """
    model = models.CharField(max_length=250,
                             unique=True,
                             help_text=_(u"Select a model"),
                             verbose_name=_(u"Model"))
    image = ImageSpecField([ResizeToFit(50, 50)],
                           image_field='original_image',
                           format='png')

    def __unicode__(self):
        return u"%s" % (self.model)

    class Meta:
        verbose_name = _(u"Custom Model")
        verbose_name_plural = _(u"Custom Models")
        ordering = ['position']
Exemplo n.º 7
0
class CustomApp(PositionImage):
    """
    This object links the installed_apps with an icon to use if CustomAdmin.use_app_icons is True
    """
    application = models.CharField(max_length=250,
                                   unique=True,
                                   help_text=_(u"Select the application"),
                                   verbose_name=_(u"Application"))
    verbose_app_name = models.CharField(
        max_length=250,
        unique=True,
        help_text=_(u"Write the verbose name to show"),
        verbose_name=_(u"Verbose app name"))
    image = ImageSpecField([ResizeToFit(128, 128)],
                           image_field='original_image',
                           format='png')
    show_models = models.BooleanField(
        default=True,
        help_text=
        _(u"If use_app_icons is False in Customadmin, you can choose wheter or not show the model list."
          ),
        verbose_name=_(u"Show models"))

    def __unicode__(self):
        return u"%s" % (self.application)

    class Meta:
        verbose_name = _(u"Custom App")
        verbose_name_plural = _(u"Custom Apps")
        ordering = ['position']
Exemplo n.º 8
0
Arquivo: models.py Projeto: simone/upy
 class Meta:
     verbose_name = _(u"Category")
     verbose_name_plural = _(u"Categories")
     ordering = ['name']
Exemplo n.º 9
0
Arquivo: models.py Projeto: simone/upy
 class Meta:
     verbose_name = _(u"Static Element")
     verbose_name_plural = _(u"Static Elements")
     ordering = ['name']
Exemplo n.º 10
0
Arquivo: models.py Projeto: simone/upy
 class Meta:
     verbose_name = _(u"Static Element G11n")
     verbose_name_plural = _(u"Static Element G11n")
Exemplo n.º 11
0
class CustomAdmin(models.Model):
    """
    This object define parameters to customize admin layout. It has sense if you use only a record 
    of this class. Infact base template use the first occurence find in the database
    """
    branding = models.CharField(max_length=200,
                                null=True,
                                blank=True,
                                default=u"upyproject.com",
                                help_text=_(u"Set branding"),
                                verbose_name=_(u"Branding"))
    branding_link = models.CharField(max_length=200,
                                     null=True,
                                     blank=True,
                                     default=u"www.upyproject.com",
                                     help_text=_(u"Set branding's link"),
                                     verbose_name=_(u"Branding link"))
    branding_image = models.FilePathField(path=settings.RELATIVE_STATIC_ROOT,
                                          null=True,
                                          blank=True,
                                          match="\.jpg|\.jpeg|.png|\.gif",
                                          recursive=True,
                                          help_text=_(u"Set brand's image."),
                                          verbose_name=_(u"Branding image"))
    is_default = models.CharField(
        max_length=50,
        choices=(("default", "Default"), ),
        null=True,
        blank=True,
        unique=True,
        help_text=_(
            u"Select it if you want use this as default customization."),
        verbose_name=_(u"Is default"))

    default_app_image = ProcessedImageField(
        verbose_name=_(u"Default app image"),
        help_text=_(u"Insert a default application image"),
        null=True,
        blank=True,
        upload_to='customadmin',
        processors=[
            _choose_preprocessor(),
        ])
    default_model_image = ProcessedImageField(
        verbose_name=_(u"Default model image"),
        help_text=_(u"Insert a default model image"),
        null=True,
        blank=True,
        upload_to='customadmin',
        processors=[
            _choose_preprocessor(),
        ])

    app_image = ImageSpecField([ResizeToFit(128, 128)],
                               image_field='default_app_image',
                               options={'quality': 90})  #format='JPEG',
    model_image = ImageSpecField([ResizeToFit(50, 50)],
                                 image_field='default_model_image',
                                 options={'quality': 90})

    bg_header = ColorField(max_length=200,
                           null=True,
                           blank=True,
                           help_text=_(u"Set header's background color."),
                           verbose_name=_(u"BG Header"))
    sitename_font = models.CharField(max_length=200,
                                     null=True,
                                     blank=True,
                                     help_text=_(u"Set sitename font."),
                                     verbose_name=_(u"Sitename font"))
    sitename_font_size = models.CharField(
        max_length=200,
        null=True,
        blank=True,
        help_text=_(u"Set sitename font size."),
        verbose_name=_(u"Sitename font size"))
    sitename_font_weight = models.CharField(
        max_length=200,
        null=True,
        blank=True,
        help_text=_(u"Set sitename font weight."),
        verbose_name=_(u"Sitename font weight"))
    table_title_bg = ColorField(
        max_length=200,
        null=True,
        blank=True,
        help_text=_(u"Set the background of title in tables."),
        verbose_name=_(u"BG table title "))
    table_title_color = ColorField(
        max_length=200,
        null=True,
        blank=True,
        help_text=_(u"Set the color of title in tables."),
        verbose_name=_(u"Table title color"))
    h2_color = ColorField(max_length=200,
                          null=True,
                          blank=True,
                          help_text=_(u"Set h2 color."),
                          verbose_name=_(u"H2 color"))
    h2_size = models.CharField(max_length=200,
                               null=True,
                               blank=True,
                               help_text=_(u"Set h2 size."),
                               verbose_name=_(u"H2 size"))
    h3_color = ColorField(max_length=200,
                          null=True,
                          blank=True,
                          help_text=_(u"Set h3 color."),
                          verbose_name=_(u"H3 color"))
    h3_size = models.CharField(max_length=200,
                               null=True,
                               blank=True,
                               help_text=_(u"Set h3 size."),
                               verbose_name=_(u"H3 size"))
    link_color = ColorField(max_length=200,
                            null=True,
                            blank=True,
                            help_text=_(u"Set link's color"),
                            verbose_name=_(u"Link color"))
    link_hover_color = ColorField(max_length=200,
                                  null=True,
                                  blank=True,
                                  help_text=_(u"Set link's color when hover"),
                                  verbose_name=_(u"Link hover color"))
    html_head = models.TextField(
        null=True,
        blank=True,
        help_text=_(u"Set other html code to put in HEAD section. "),
        verbose_name=_(u"Html head"))
    css_code = models.TextField(null=True,
                                blank=True,
                                help_text=_(u"Set the css code. "),
                                verbose_name=_(u"Css code"))
    use_css_code = models.BooleanField(
        help_text=_(u"Check it if you want use css code to extends style."),
        verbose_name=_(u"Use css code"))
    use_log_sidebar = models.BooleanField(
        default=False,
        help_text=_(
            u"Check it if you want use log sidebar in index template."),
        verbose_name=_(u"Use log sidebar"))
    view_mode = models.CharField(
        max_length=250,
        null=True,
        blank=True,
        choices=(
            ('use_custom_app',
             _('Use custom app system')), ('use_app_icons',
                                           _("Use apps' icons system")),
            ('use_app_and_model_icons', _("Use apps and models icons system")),
            ('use_model_icons',
             _("Use models' icons system in index group models by app")),
            ('use_total_model_icons',
             _("Use models' icons system in index ungroup models by app"))),
        help_text=_(u"Choose the view mode"),
        verbose_name=_(u"View mode"))
    autocomplete_app_list = models.BooleanField(
        default=True,
        help_text=
        _(u"Check it if you want complete the custom app list with the default app list."
          ),
        verbose_name=_(u"Autocomplete App"))
    autocomplete_models_list = models.BooleanField(
        default=True,
        help_text=
        _(u"Check it if you want complete the custom models list with the default models list."
          ),
        verbose_name=_(u"Autocomplete model"))

    @property
    def customization(self):
        """
        It returns branding if defined, else image, else only his primary key.
        """
        if self.branding:
            return self.branding
        elif self.branding_image:
            res = self.branding_image.split("/")[-1]
            return res
        else:
            return self.pk

    @property
    def branding_image_url(self):
        return self.branding_image.replace(settings.RELATIVE_STATIC_ROOT,
                                           settings.STATIC_URL).replace(
                                               "//", "/")

    def save(self, *args, **kwargs):
        appicons = CustomApp.objects.all()
        if self.view_mode == "use_app_icons" and not appicons:
            for app in list_apps():
                new_app = CustomApp(application=app[0],
                                    verbose_app_name=app[1])
                new_app.save()
        clean_cache(settings.UPYCACHE_DIR, "meta")
        super(CustomAdmin, self).save(*args, **kwargs)

    def delete(self):
        clean_cache(settings.UPYCACHE_DIR, "meta")
        super(CustomAdmin, self).delete()

    def __unicode__(self):
        return u"%s" % (self.branding)

    class Meta:
        verbose_name = _(u"Custom Admin")
        verbose_name_plural = _(u"Custom Admin")
        ordering = ['branding']
Exemplo n.º 12
0
 class Meta:
     verbose_name = _(u"Custom Model")
     verbose_name_plural = _(u"Custom Models")
     ordering = ['position']
Exemplo n.º 13
0
 class Meta:
     verbose_name = _(u"Custom Link")
     verbose_name_plural = _(u"Custom Link")
     ordering = ['position']
Exemplo n.º 14
0
 class Meta:
     verbose_name = _(u"Custom Admin")
     verbose_name_plural = _(u"Custom Admin")
     ordering = ['branding']