![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
crispy-forms-foundation-demo
Advanced tools
.. _docutils: http://docutils.sourceforge.net/ .. _Django: https://www.djangoproject.com/ .. _django-crispy-forms: https://github.com/maraujop/django-crispy-forms .. _Foundation: http://github.com/zurb/foundation .. _Foundation Grid: http://foundation.zurb.com/docs/grid.php .. _crispy-forms-foundation: https://github.com/sveetch/crispy-forms-foundation
This is a Django application to demonstrate crispy-forms-foundation
_ using django-crispy-forms
_ with Foundation
_.
Links
PyPi package <http://pypi.python.org/pypi/crispy-forms-foundation-demo>
_;Github repository <https://github.com/sveetch/crispy-forms-foundation-demo>
_;crispy-forms-foundation
_ >= 0.5.0;Edit your settings.py
to add the following settings :
.. sourcecode:: python
INSTALLED_APPS = (
...
'crispy_forms',
'crispy_forms_foundation',
'crispy_forms_foundation_demo'
...
)
CRISPY_TEMPLATE_PACK = 'foundation-5'
Then mount it on your urls :
.. sourcecode:: python
urlpatterns = patterns('',
...
url(r'^crispies/', include('crispy_forms_foundation_demo.urls')),
...
)
And finally, some templates attempt to inherit from a skeleton.html
template where you should load your Foundation assets (CSS and JS), here is a sample of this template you should create into your templates directory:
.. sourcecode:: django
<!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>{% block head_title %}Sample skeleton{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% block header_content %}{% spaceless %}
{% block head_base_links %}
<link rel="stylesheet" href="{{ STATIC_URL }}css/foundation.min.css">
{% endblock %}
{% block head_base_js %}
<script type="text/javascript" src="{{ STATIC_URL }}js/foundation.min.js"></script>
{% endblock %}
{% endspaceless %}{% endblock %}
</head>
<body>
{% block content_container %}<div id="body_content"{% block content_container_attrs %}{% endblock %}>
{% block base_content %}{% endblock %}
</div>{% endblock %}
{% block foot_more_js %}{% endblock %}
</body>
</html>
That's all, now you can access to the demo.
FAQs
Django application to demonstrate 'crispy-forms-foundation'
We found that crispy-forms-foundation-demo demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.