Skip to content

Commit

Permalink
Finished builder class views and caught missing staticfiles change
Browse files Browse the repository at this point in the history
  • Loading branch information
carsongee committed Dec 1, 2013
1 parent 1a5bbe0 commit 99de060
Show file tree
Hide file tree
Showing 3 changed files with 105 additions and 99 deletions.
5 changes: 2 additions & 3 deletions formunculous/templates/formunculous/builder_ad_form.html
@@ -1,14 +1,13 @@
{% extends "formunculous/builder_base.html" %}

{% load i18n widget_type adminmedia static %}
{% load i18n widget_type static %}


{% block extrastyle %}{{ block.super }}
{{ form.media }}
{{ media }}
<link href="{% static 'formunculous/css/formunculous.css' %}" rel="stylesheet" type="text/css" />
<link href="{% static 'formunculous/css/apply.css' %}" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="{% admin_media_prefix %}css/widgets.css" />
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/widgets.css' %}" />
{% endblock %}

{% block extrahead %}{{ block.super }}
Expand Down
Expand Up @@ -99,7 +99,7 @@ <h4 style="line-height: 1.1em;margin:0;padding:0;">{% trans "Field Types" %}</h4
<li class="ui-state-default formunculous-new-field">
<span class="ui-icon ui-icon-arrow-4 fl"{% if type.icon %}style="margin-top:8px"{% endif %}></span>
{% if type.icon %}
<img src="{{ MEDIA_URL }}{{ type.icon }}"/>
<img src="{% static type.icon %}"/>
{% endif %}
{{type.name}}
<span style="display:none" class="field_type_selection">{{ type.type }}</span>
Expand Down

0 comments on commit 99de060

Please sign in to comment.