Browse Source

Made floppyforms theme shared between admin and cranefly. #114

Ralfp 12 years ago
parent
commit
c02ea7660f

+ 1 - 1
templates/admin/signin.html

@@ -1,5 +1,5 @@
 {% extends "admin/layout_compact.html" %}
-{% import "cranefly/forms.html" as form_theme with context %}
+{% import "forms.html" as form_theme with context %}
 {% from "admin/macros.html" import page_title, draw_message_icon %}
 
 {% block title %}{{ page_title(title=_('Sign In')) }}{% endblock %}

+ 1 - 1
templates/cranefly/signin.html

@@ -1,5 +1,5 @@
 {% extends "cranefly/layout.html" %}
-{% import "cranefly/forms.html" as form_theme with context %}
+{% import "forms.html" as form_theme with context %}
 {% import "cranefly/macros.html" as macros with context %}
 
 {% block title %}{{ macros.page_title(title=_('Sign In')) }}{% endblock %}

+ 1 - 1
templates/cranefly/usercp/avatar_upload.html

@@ -1,5 +1,5 @@
 {% extends "cranefly/usercp/layout.html" %}
-{% import "cranefly/forms.html" as form_theme with context %}
+{% import "forms.html" as form_theme with context %}
 {% import "cranefly/macros.html" as macros with context %}
 
 {% block title %}{{ macros.page_title(title=_('Upload Avatar')) }}{% endblock %}

+ 1 - 1
templates/cranefly/usercp/credentials.html

@@ -1,5 +1,5 @@
 {% extends "cranefly/usercp/layout.html" %}
-{% import "cranefly/forms.html" as form_theme with context %}
+{% import "forms.html" as form_theme with context %}
 {% import "cranefly/macros.html" as macros with context %}
 
 {% block title %}{{ macros.page_title(title=_('Change your Sign-In Credentials')) }}{% endblock %}

+ 1 - 1
templates/cranefly/usercp/options.html

@@ -1,5 +1,5 @@
 {% extends "cranefly/usercp/layout.html" %}
-{% import "cranefly/forms.html" as form_theme with context %}
+{% import "forms.html" as form_theme with context %}
 {% import "cranefly/macros.html" as macros with context %}
 
 {% block title %}{{ macros.page_title(title=_('Change Forum Options')) }}{% endblock %}

+ 1 - 1
templates/cranefly/usercp/username.html

@@ -1,5 +1,5 @@
 {% extends "cranefly/usercp/layout.html" %}
-{% import "cranefly/forms.html" as form_theme with context %}
+{% import "forms.html" as form_theme with context %}
 {% import "cranefly/macros.html" as macros with context %}
 
 {% block title %}{{ macros.page_title(title=_('Change your Username')) }}{% endblock %}

+ 0 - 0
templates/cranefly/forms.html → templates/forms.html