Rennomage des templatetags
This commit is contained in:
parent
a9473e83ee
commit
ecee55b343
11 changed files with 17 additions and 14 deletions
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% load i18n bulma_utils %}
|
{% load i18n string %}
|
||||||
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% load i18n static bulma_utils %}
|
{% load i18n static string %}
|
||||||
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% load i18n static bulma_utils %}
|
{% load i18n static string %}
|
||||||
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% load static bulma_utils i18n %}
|
{% load static bulma i18n %}
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% load bulma_utils %}
|
{% load bulma %}
|
||||||
|
|
||||||
<div class="field">
|
<div class="field">
|
||||||
{% if field|is_checkbox %}
|
{% if field|is_checkbox %}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% load bulma_utils i18n %}
|
{% load i18n bulma %}
|
||||||
|
|
||||||
<label class="label {% if field.field.required %}{{ form.required_css_class }}{% endif %}">
|
<label class="label {% if field.field.required %}{{ form.required_css_class }}{% endif %}">
|
||||||
{{ field.label_tag }}
|
{{ field.label_tag }}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% load bulma_utils %}
|
{% load bulma %}
|
||||||
|
|
||||||
<label class="label {% if field.field.required %}{{ form.required_css_class }}{% endif %}">
|
<label class="label {% if field.field.required %}{{ form.required_css_class }}{% endif %}">
|
||||||
{{ field.label_tag }}
|
{{ field.label_tag }}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% load bulma_utils %}
|
{% load bulma %}
|
||||||
|
|
||||||
<label class="label {% if field.field.required %}{{ form.required_css_class }}{% endif %}">
|
<label class="label {% if field.field.required %}{{ form.required_css_class }}{% endif %}">
|
||||||
{{ field.label_tag }}
|
{{ field.label_tag }}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% load bulma_utils %}
|
{% load bulma %}
|
||||||
|
|
||||||
<label class="label {% if field.field.required %}{{ form.required_css_class }}{% endif %}">
|
<label class="label {% if field.field.required %}{{ form.required_css_class }}{% endif %}">
|
||||||
{{ field.label_tag }}
|
{{ field.label_tag }}
|
||||||
|
|
|
@ -72,8 +72,3 @@ def bulma_message_tag(tag):
|
||||||
return "danger"
|
return "danger"
|
||||||
|
|
||||||
return tag
|
return tag
|
||||||
|
|
||||||
|
|
||||||
@register.filter
|
|
||||||
def concatenate(a, b):
|
|
||||||
return str(a) + str(b)
|
|
8
shared/templatetags/string.py
Normal file
8
shared/templatetags/string.py
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
from django import template
|
||||||
|
|
||||||
|
register = template.Library()
|
||||||
|
|
||||||
|
|
||||||
|
@register.filter
|
||||||
|
def concatenate(a, b):
|
||||||
|
return str(a) + str(b)
|
Loading…
Reference in a new issue