Corrected the rdfa in the metadata table.
authortilly-Q <nattilypigeonfowl@gmail.com>
Mon, 12 May 2014 18:48:46 +0000 (14:48 -0400)
committertilly-Q <nattilypigeonfowl@gmail.com>
Mon, 12 May 2014 18:48:46 +0000 (14:48 -0400)
mediagoblin/templates/mediagoblin/utils/metadata_table.html

index edbee2c2d1c30b14a48b2fc8a156f8f5f7229592..14e18bf307c4f0037b4ba33f85b5448dfd2012cc 100644 (file)
   {%- set metadata_context=metadata['@context'] %}
   {%- if metadata %}
       <h3>{% trans %}Metadata Information{% endtrans %}</h3>
-      <table context="{{ metadata_context }}" class="metadata_info">
+      <table class="metadata_info">
         {%- for key, value in metadata.iteritems() if (
             not key=='@context' and value) %}
             <tr {% if loop.index%2 == 1 %}class="highlight"{% endif %}>
               <th>{{ format_predicate(key) }}</th>
-              <td property="{{ key }}" typeof="{{ value }}">
+              <td property="{{ key }}">
                 {{ value }}</td>
             </tr>
         {%- endfor %}