forked from DGNum/gestioCOF
10 lines
284 B
Python
10 lines
284 B
Python
from django.templatetags.static import static
|
|
from django.utils.html import format_html
|
|
from wagtail.core import hooks
|
|
|
|
|
|
@hooks.register("insert_editor_css")
|
|
def editor_css():
|
|
return format_html(
|
|
'<link rel="stylesheet" href="{}">', static("kfetcms/css/editor.css")
|
|
)
|