This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
cms-ajax-text-plugin/cms_ajax_text_plugin/models.py

13 lines
416 B
Python

from django.db import models
from django.utils.translation import ugettext_lazy as _
from cmsplugin_text_wrapper.models import TextWrapper
class TextWithExtraArgs(TextWrapper):
"""
Model for Text with args
"""
args = models.CharField(max_length=256,
help_text=_(u'extra GET arguments to pass to included plugins'),
blank = True, null = True)