check if the note has html in note_detail template #105
authorCharles Holbrow <charlesholbrow@gmail.com>
Thu, 18 Apr 2013 17:25:03 +0000 (13:25 -0400)
committerCharles Holbrow <charlesholbrow@gmail.com>
Thu, 18 Apr 2013 17:25:03 +0000 (13:25 -0400)
karmaworld/templates/notes/note_detail.html

index fb358c0b93596a064a4a22f8ee56b8b6f8ced005..e797918e9538d35dbb2086b61cfb9b28ed250ee8 100644 (file)
 
       <div class="row">
         <div class="eight columns centered body_copy">
-
+          {% if note.html %}
           <div class="note-text">
             <iframe style="border:none; width:100%;" id="noteframe" src="/raw/{{ note.id }}" onload="autoResize('noteframe')">
             </iframe>
           </div> <!-- .note-text -->
-          <div class="note-error" style="display:none">
-            This document's content is currently unavailable. It's likely the document is still being processed. Please try again later.
+          {% else %}
+          <div class="note-error">
+            This document's content is currently unavailable. Please try again later.
           </div>
+          {% endif %}
 
         </div><!-- /body_copy -->
       </div>