معرفی شرکت ها


django-totd-1.0.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Django app for adding a Tip of the Day to any page
ویژگی مقدار
سیستم عامل -
نام فایل django-totd-1.0.2
نام django-totd
نسخه کتابخانه 1.0.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Michael Hall
ایمیل نویسنده mhall119@gmail.com
آدرس صفحه اصلی https://github.com/GetTogetherComm/totd
آدرس اینترنتی https://pypi.org/project/django-totd/
مجوز -
# Tip of the Day (totd) A Django application that allows you to create tips or hints to be displayed at the top of specific pages on your website. This app allows you to define tips in the Django Admin, assign them to specific pages, and give a date range in which they should be displayed. # Installation Install the Django Tip of the Day package: `pip install django-totd` # Settings Totd requires the Django Sites application. Add `django.contrib.sites` and `totd` to your INSTALLED_APPS: ``` INSTALLED_APPS = [ ... 'django.contrib.sites' `totd', ] ``` Add the `tips` Context Processor: ``` TEMPLATES = [ { "BACKEND": "django.template.backends.django.DjangoTemplates", "DIRS": [], "APP_DIRS": True, "OPTIONS": { "context_processors": [ ... "totd.context_processors.tips", ] }, } ] ``` # Templates Totd works a lot like the Django Messages framework, you should add it to the top of the content portion of your base template so that it can be used in any page extending that template. The URL path of the request will be used to decide which Tip to show. Add the following snippet to your base template: ``` {% if tip %} <div class="alerts"> <div class="alert {{ tip.tags }}"><strong>{% trans "Tip:" %} </strong>{{ tip.text|safe }}</div> </div> {% endif %} ```


نیازمندی

مقدار نام
>=2.2.0 Django


زبان مورد نیاز

مقدار نام
>=3.5 Python


نحوه نصب


نصب پکیج whl django-totd-1.0.2:

    pip install django-totd-1.0.2.whl


نصب پکیج tar.gz django-totd-1.0.2:

    pip install django-totd-1.0.2.tar.gz