From 82f6db5f05cd9ebe28ef030127a86f32e0dea676 Mon Sep 17 00:00:00 2001
From: asmyshlyaev177 <asmyshlyaev177@gmail.com>
Date: Tue, 28 Mar 2017 09:51:35 +0200
Subject: [PATCH 1/2] Update models.rst

Add further example for model definition;
{% load sekizai_tags %} no need to use anymore, cause error. Need load meta tag;
Render_block also cause error, depend on sekizai. Without extra block Google microdata testing tool doesn't show any errors. Google+ can use OG tags;
{{ meta.og_description }} cause strange bug in Chrome, everything from head section rendered in body;
For FBV can user as_meta() method for pass context variable "meta"
---
 docs/models.rst | 26 ++++++++++++++++++++------
 1 file changed, 20 insertions(+), 6 deletions(-)

diff --git a/docs/models.rst b/docs/models.rst
index 7627485..843e493 100644
--- a/docs/models.rst
+++ b/docs/models.rst
@@ -66,13 +66,18 @@ Usage
     class MyModel(ModelMeta, models.Model):
         name = models.CharField(max_length=20)
         abstract = models.TextField()
+        image = models.ImageField()
         ...
 
         _metadata = {
             'title': 'name',
             'description': 'abstract',
+            'image': 'get_meta_image',
             ...
         }
+        def get_meta_image(self):
+            if self.image:
+                return self.image.url
 
 #. Push metadata in the context using ``as_meta`` method::
 
@@ -84,13 +89,23 @@ Usage
             context = super(MyView, self).get_context_data(self, **kwargs)
             context['meta'] = self.get_object().as_meta(self.request)
             return context
+            
+#. Fro Function Based View can just use ``as_meta()`` method for pass "meta" context variable::
+
+    def post(request, id):
+        template = 'single_post.html'
+        post = Post.objects.get(pk=id)
+        context = {}
+        context['post'] = post
+        context['meta'] = post.as_meta()
+        return render(request, template, context)
 
 #. Include ``meta/meta.html`` template in your templates::
 
-    {% load sekizai_tags %}
+    {% load meta %}
 
-    <html {% render_block 'html_extra' %}>
-    <head>
+    <html>
+    <head {% meta_namespaces %}>
         {% include "meta/meta.html" %}
     </head>
     <body>
@@ -108,11 +123,10 @@ Reference template
 
 See below the basic reference template::
 
-    {% load sekizai_tags meta %}
+    {% load meta %}
 
-    <html {% render_block 'html_extra' %}>
+    <html>
     <head {% meta_namespaces %}>
-        {{ meta.og_description }}
         {% include "meta/meta.html" %}
     </head>
     <body>

From 075114a35fd321cdfabea2b827e2d87878c93195 Mon Sep 17 00:00:00 2001
From: Iacopo Spalletti <github@spalletti.it>
Date: Sun, 16 Apr 2017 21:47:20 +0200
Subject: [PATCH 2/2] Fix typo

---
 docs/models.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/models.rst b/docs/models.rst
index 843e493..d21dc62 100644
--- a/docs/models.rst
+++ b/docs/models.rst
@@ -90,7 +90,7 @@ Usage
             context['meta'] = self.get_object().as_meta(self.request)
             return context
             
-#. Fro Function Based View can just use ``as_meta()`` method for pass "meta" context variable::
+#. For Function Based View can just use ``as_meta()`` method for pass "meta" context variable::
 
     def post(request, id):
         template = 'single_post.html'