<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>example/templates/example/as_fieldset_x.html</filename>
    </added>
    <added>
      <filename>example/templates/example/simple.html</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -4,7 +4,7 @@ body {
 }
 
 h2 {
-    margin: 24px 0 4px 0;
+    margin: 32px 0 4px 0;
 }
 
 th {
@@ -20,8 +20,11 @@ pre  {
 
 form h2 {
     color: #859;
+    margin: 0;
 }
 
+
+/* as_table */
 form table {
     background: #edf;
     width: 800px;
@@ -30,4 +33,35 @@ form table {
 form table, form table th, form table td {
     border: 1px solid #859;
     border-collapse: collapse;
-}
\ No newline at end of file
+}
+
+
+/* as_ul */
+form &gt; ul {
+    margin: 0;
+    padding-left: 0;
+    width: 800px;
+}
+form ul li {
+    background: #edf;
+    list-style: none;
+    padding: 4px;
+}
+
+form ul ul {
+    padding-left: 3em;
+}
+form ul ul li {
+    background: #fee;
+    margin: 4px 0;
+}
+
+
+/* as_p */
+form p {
+    background: #edf;
+    margin: 4px 0;
+    padding: 4px 2px;
+    width: 796px;
+}
+</diff>
      <filename>example/media/css/main.css</filename>
    </modified>
    <modified>
      <diff>@@ -2,20 +2,14 @@
 &lt;head&gt;
     &lt;title&gt;Django-formfieldset Example&lt;/title&gt;
     &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;{{ MEDIA_URL }}css/main.css&quot; /&gt;
-
 &lt;/head&gt;
 &lt;body&gt;
 
-&lt;h2&gt;Form Definition&lt;/h2&gt;
-&lt;pre&gt;&lt;code&gt;{{ forms_py|safe }}&lt;/code&gt;&lt;/pre&gt;
-
-&lt;h2&gt;Normal Render&lt;/h2&gt;
-&lt;pre&gt;&lt;code&gt;{% templatetag openvariable %} form {% templatetag closevariable %}&lt;/code&gt;&lt;/pre&gt;
-&lt;form&gt;&lt;table&gt;{{ form }}&lt;/table&gt;&lt;/form&gt;
-
-&lt;h2&gt;Fieldset Render&lt;/h2&gt;
-&lt;pre&gt;&lt;code&gt;{% templatetag openvariable %} form.as_fieldset_table {% templatetag closevariable %}&lt;/code&gt;&lt;/pre&gt;
-&lt;form&gt;&lt;table&gt;{{ form.as_fieldset_table }}&lt;/table&gt;&lt;/form&gt;
+&lt;h1&gt;Django-formfieldset Examples&lt;/h1&gt;
+&lt;ol&gt;
+    &lt;li&gt;&lt;a href=&quot;{% url example &quot;simple&quot; %}&quot;&gt;Simple Example&lt;/a&gt;&lt;/li&gt;
+    &lt;li&gt;&lt;a href=&quot;{% url example &quot;as_fieldset_x&quot; %}&quot;&gt;Render With &lt;code&gt;as_fieldset_*&lt;/code&gt; Methods&lt;/a&gt;&lt;/li&gt;
+&lt;/ol&gt;
 
 &lt;/body&gt;
 &lt;/html&gt;
\ No newline at end of file</diff>
      <filename>example/templates/example/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -2,8 +2,15 @@ from django.conf.urls.defaults import *
 from django.conf import settings
 
 
-urlpatterns = patterns('example.views',
-    (r'^$', 'homepage'),
+urlpatterns = patterns('',
+    (r'^$',
+        'django.views.generic.simple.direct_to_template',
+        {'template': 'example/index.html'},
+        'homepage'),
+    (r'^example/(?P&lt;example_name&gt;\w+)/$',
+        'example.views.example',
+        {},
+        'example'),
 )
 
 if settings.DEBUG:</diff>
      <filename>example/urls.py</filename>
    </modified>
    <modified>
      <diff>@@ -4,9 +4,9 @@ from django.template import RequestContext
 from django.shortcuts import render_to_response
 import forms
 
-def homepage(request):
+def example(request, example_name):
     forms_py_path = os.path.join(os.path.dirname(forms.__file__), 'forms.py')
     ctx = {'forms_py': open(forms_py_path, 'rb').read(),
            'form': forms.ContactForm()}
-    return render_to_response('example/index.html',
+    return render_to_response('example/%s.html' % example_name,
                               RequestContext(request, ctx))
\ No newline at end of file</diff>
      <filename>example/views.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>00ebb0c17e9738d5def31b5d35db948c07771183</id>
    </parent>
  </parents>
  <author>
    <name>Atamert &#214;l&#231;gen</name>
    <email>muhuk@muhuk.com</email>
  </author>
  <url>http://github.com/muhuk/django-formfieldset/commit/a24e1ee87fcc7b0f6a26fe90c6aab59629a256bf</url>
  <id>a24e1ee87fcc7b0f6a26fe90c6aab59629a256bf</id>
  <committed-date>2009-05-30T04:24:32-07:00</committed-date>
  <authored-date>2009-05-30T04:24:32-07:00</authored-date>
  <message>Improve example project</message>
  <tree>56bb1489fa3901bf041c9d3873f02bb72a39d478</tree>
  <committer>
    <name>Atamert &#214;l&#231;gen</name>
    <email>muhuk@muhuk.com</email>
  </committer>
</commit>
