Skip to content

Commit

Permalink
fix composite and options templates for chrome
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Jan 17, 2013
1 parent 2417283 commit 5cd2b03
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGES.txt
Expand Up @@ -2,6 +2,12 @@ CHANGES
=======


0.6.2 (01-16-2013)
------------------

- Fixed composite and options templates for Chrome


0.6.1 (01-09-2012)
------------------

Expand Down
4 changes: 2 additions & 2 deletions pform/__init__.py
Expand Up @@ -5,7 +5,7 @@
'Field', 'FieldFactory', 'Fieldset',
'field', 'fieldpreview', 'get_field_factory', 'get_field_preview',

'Term', 'Vocabulary', 'SimpleTerm', 'SimpleVocabulary',
'Term', 'Vocabulary',

'All','Function','Regex','Email','Range', 'Length','OneOf',

Expand Down Expand Up @@ -120,9 +120,9 @@


def includeme(cfg):
cfg.include('player')
cfg.include('pyramid_amdjs')
cfg.include('pyramid_jinja2')
cfg.include('player')

# field
from pform.directives import add_field
Expand Down
1 change: 1 addition & 0 deletions pform/templates/composite.jinja2
Expand Up @@ -43,5 +43,6 @@
<p class="help-block"></p>
</div>
</div>
<div class="clearfix"></div>
{% endfor %}
{% endif %}
1 change: 1 addition & 0 deletions pform/templates/options.jinja2
Expand Up @@ -20,4 +20,5 @@
<p class="help-block"></p>
</div>
</div>
<div class="clearfix"></div>
{% endfor %}
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -2,11 +2,11 @@
import sys
from setuptools import setup, find_packages

version = '0.6.1'
version = '0.6.2'

install_requires = ['setuptools',
'pyramid >= 1.4',
'pyramid_amdjs >= 0.3',
'pyramid_amdjs >= 0.5',
'pyramid_jinja2',
'player >= 0.6',
'pytz',
Expand Down

0 comments on commit 5cd2b03

Please sign in to comment.