Django Ogp View 1.1.0 | Coderz Product

django-ogp-view 1.1.0

Last updated:

0 purchases

django-ogp-view 1.1.0 Image
django-ogp-view 1.1.0 Images

Free

Languages

Categories

Add to Cart

Description:

djangoogpview 1.1.0

django-ogp-view
ViewクラスにOGP (The Open Graph protocol)を適応させるライブラリです。
本ライブラリのViewMixinを継承させることで、ogp metaタグの実装が簡略化できます。
画面ごとにカスタマイズすることもできます。
SEO (Search Engine Optimization)対策に最適です。
導入

ライブラリをインストールする。
pip install django-ogp-view
or
pip install git+https://github.com/taogya/DjangoOgpView.git


settings.pyに以下を追加する。
INSTALLED_APPS = [
:
'django_ogp'
]
OGP_SITE_PROPERTY_MODEL = 'django_ogp.OgpSiteProperty'
OGP_LOCALE_MASTER_MODEL = 'django_ogp.OgpLocaleMaster'
OGP_MIMETYPE_MASTER_MODEL = 'django_ogp.OgpMimeTypeMaster'


migrateを行う。
python manage.py makemigrations
python manage.py migrate


OGP用のプロパティを設定する。

OgpSiteProperty
サイト内共通のプロパティ。
OgpBasicProperty
ページごとのプロパティ。
OgpCustomProperty
カスタムプロパティ。
JSONで指定する。
JSONについて, keyはpropertyの名称, valueはcontentの値で指定する。


ViewにOgpViewMixinを継承し, 割り当てるプロパティのレコードを割り当てる。
from django.views import View
from django_ogp.view import OgpViewMixin
from django_ogp.models import OgpBasicProperty

class YourView(View, OgpViewMixin):
ogp = OgpBasicProperty.objects.first()
:


以下のようにhtmlファイルにdjango_ogp用のタグを追加する。
{% load django_ogp %}
<!DOCTYPE html>
<html lang="en" prefix="{{ view.ogp_global_prefix }}">
<head prefix="{{ view.ogp_prefix }}">
{% add_ogp_meta %}
:



Models

補足

マイグレーションファイル にはマスターデータ自動生成スクリプトが含まれています。
不要なデータがありましたら, 管理者画面にて削除するかマイグレーションファイルを修正してください。
以下のモデルはswappableなモデルです。

OgpSiteProperty
OgpLocaleMaster
OgpMimeTypeMaster

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.