~ubuntuone-hackers/django-formfieldset/trunk

« back to all changes in this revision

Viewing changes to example/templates/examples/_example.html

  • Committer: Atamert Ölçgen
  • Date: 2009-12-13 09:58:50 UTC
  • Revision ID: git-v1:0d5a4c33e842a1833353a996516672d7fbde2f4d
Example project:
    More pages
    Pygments support

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<div class="example">
2
2
  <h3>{{ name|title }} Example</h3>
3
3
  <h4>Form Code</h4>
4
 
  <pre>{{ form_code }}</pre>
 
4
  {{ form_code }}
5
5
 
6
6
  <h4>Template Code</h4>
7
 
  <pre>&lt;form action="" method="POST"&gt;{{ template }}&lt;/form&gt;</pre>
 
7
  {{ template }}
8
8
 
9
9
  <h4>Result</h4>
10
 
  <pre>&lt;form action="" method="POST"&gt;{{ rendered|force_escape }}&lt;/form&gt;</pre>
 
10
  {{ rendered_code }}
11
11
 
12
12
  <h4>Rendered Result</h4>
13
13
  <div class="rendered"><form action="" method="POST">{{ rendered }}</form></div>