Home
last modified time | relevance | path

Searched refs:format_html (Results 1 – 25 of 484) sorted by relevance

12345678910>>...20

/dports/www/py-dj32-django-treebeard/django-treebeard-4.4/treebeard/templatetags/
H A Dadmin_tree_list.py4 from django.utils.html import format_html
17 raw_id_fields = format_html("""
24 output += format_html(CHECKBOX_TMPL, mark_safe(node.pk))
25 return output + format_html(
33 tree += format_html(
37 tree = format_html('<ul>{}</ul>', mark_safe(tree))
45 tree += format_html(
47 return format_html("<ul>{}</ul>", mark_safe(tree))
H A Dadmin_tree.py20 from django.utils.html import conditional_escape, format_html
156 yield format_html('<td{0}>{1}</td>', row_class, result_repr)
158 yield format_html('<td>{0}</td>', force_str(form[cl.model._meta.pk.name]))
228 return format_html(
252 return format_html(
/dports/www/py-django-treebeard/django-treebeard-4.4/treebeard/templatetags/
H A Dadmin_tree_list.py4 from django.utils.html import format_html
17 raw_id_fields = format_html("""
24 output += format_html(CHECKBOX_TMPL, mark_safe(node.pk))
25 return output + format_html(
33 tree += format_html(
37 tree = format_html('<ul>{}</ul>', mark_safe(tree))
45 tree += format_html(
47 return format_html("<ul>{}</ul>", mark_safe(tree))
H A Dadmin_tree.py20 from django.utils.html import conditional_escape, format_html
156 yield format_html('<td{0}>{1}</td>', row_class, result_repr)
158 yield format_html('<td>{0}</td>', force_str(form[cl.model._meta.pk.name]))
228 return format_html(
252 return format_html(
/dports/math/R-cran-memisc/memisc/man/
H A Dformat_html.ftable.Rd1 \name{format_html.ftable}
2 \alias{format_html.ftable}
3 \alias{format_html.ftable_matrix}
9 This is the method of \code{\link{format_html}} for "ftable" objects (i.e. flattened
13 \method{format_html}{ftable}(x,
22 \method{format_html}{ftable_matrix}(x,
54 See Also as \code{\link{format_html}}, \code{\link{show_html}}, \code{\link{write_html}}.
H A Dformat_html.Rd1 \name{format_html}
3 \alias{format_html}
7 \alias{format_html.data.frame}
8 \alias{format_html.matrix}
15 Both functions call the generic \code{format_html} for the format conversion.
21 format_html(x, \dots)
23 \method{format_html}{data.frame}(x,
33 \method{format_html}{matrix}(x,
90 \code{format_html} character string with code suitable for inclusion into a HTML-file.
H A Dformat_html.codebook.Rd1 \name{format_html.codebook}
2 \alias{format_html.codebook}
7 This is the method of \code{\link{format_html}} for "codebook" objects as created
11 \method{format_html}{codebook}(x,
34 See Also as \code{\link{format_html}}, \code{\link{show_html}}, \code{\link{write_html}}.
/dports/www/py-paste/Paste-3.4.6/paste/exceptions/
H A Dreporter.py31 def format_html(self, exc_data, **kw): member in Reporter
32 return formatter.format_html(exc_data, **kw)
73 short_html_version = self.format_html(
75 long_html_version = self.format_html(
141 return [formatter.format_html(self.exc_data)]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/Paste/paste/exceptions/
H A Dreporter.py31 def format_html(self, exc_data, **kw): member in Reporter
32 return formatter.format_html(exc_data, **kw)
73 short_html_version = self.format_html(
75 long_html_version = self.format_html(
141 return [formatter.format_html(self.exc_data)]
/dports/www/py-horizon/horizon-19.2.0/horizon/forms/
H A Dfields.py230 output = [html.format_html('<select{}>', flatatt(final_attrs))]
266 output.append(html.format_html(
426 return html.format_html(
481 label_for = html.format_html(' for="{}"', self.id_for_label)
487 return html.format_html(
508 return html.format_html('<input{} />', flatatt(final_attrs))
540 return html.format_html(
577 output.append(html.format_html(
584 output.append(html.format_html(
588 return html.format_html(
[all …]
/dports/www/py-django-mptt/django-mptt-0.13.4/mptt/templatetags/
H A Dmptt_admin.py27 from django.utils.html import format_html
171 opener = format_html(' data-popup-opener="{}"', value)
174 link_or_text = format_html(
179 yield format_html(
203 yield format_html("<td{}{}>{}</td>", row_class, padding_attr, result_repr)
206 yield format_html("<td>{}</td>", force_str(form[cl.model._meta.pk.name]))
/dports/www/py-dj32-django-mptt/django-mptt-0.13.4/mptt/templatetags/
H A Dmptt_admin.py27 from django.utils.html import format_html
171 opener = format_html(' data-popup-opener="{}"', value)
174 link_or_text = format_html(
179 yield format_html(
203 yield format_html("<td{}{}>{}</td>", row_class, padding_attr, result_repr)
206 yield format_html("<td>{}</td>", force_str(form[cl.model._meta.pk.name]))
/dports/www/py-django-star-ratings/django-star-ratings-0.9.1/star_ratings/
H A Dadmin.py8 from django.utils.html import format_html
18 return format_html(html, obj.score * 10)
36 return format_html(html, app_settings.STAR_RATINGS_RANGE * 10, obj.average * 10)
/dports/www/py-WebError/WebError-0.13.1/weberror/
H A Dreporter.py29 def format_html(self, exc_data, **kw): member in Reporter
30 return formatter.format_html(exc_data, **kw)
72 short_html_version, short_extra = self.format_html(
74 long_html_version, long_extra = self.format_html(
140 return [formatter.format_html(self.exc_data)]
/dports/math/R-cran-memisc/memisc/R/
H A Dhtml-tools.R4 ht <- format_html(x,...)
53 cat(format_html(x,...),file=file)
55 format_html <- function(x,...) function
/dports/math/R-cran-memisc/memisc/inst/doc/
H A Danes48.R8 knitr::asis_output(format_html(x,...))
11 knitr::asis_output(format_html(x,...))
15 format_html(x,
25 knitr::asis_output(format_html(x,...))
/dports/math/R-cran-memisc/memisc/
H A DNAMESPACE125 format_html,
308 S3method(format_html,memisc_mtable)
309 S3method(format_html,ftable)
310 S3method(format_html,codebook)
311 S3method(format_html,codebookEntry)
312 S3method(format_html,data.frame)
349 S3method(format_html,ftable_matrix)
367 S3method(format_html,html_elem)
374 S3method(format_html,html_group)
387 S3method(format_html,descriptions)
/dports/www/seahub/seahub-8.0.7-server/seahub/avatar/templatetags/
H A Dgroup_avatar_tags.py7 from django.utils.html import format_html
54 return format_html(val)
77 return format_html(img)
/dports/www/py-django-post_office/django-post_office-3.5.3/post_office/
H A Dsanitizer.py1 from django.utils.html import mark_safe, format_html
142 clean_html = lambda body: format_html('<p><em>{heading}</em></p>\n<div>{body}</div>',
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/comrak-0.12.1/benches/
H A Dprogit.rs6 use comrak::{format_html, parse_document, Arena, ComrakOptions};
21 format_html(root, &ComrakOptions::default(), &mut output).unwrap() in bench_progit()
/dports/www/py-wagtail/wagtail-2.14.2/wagtail/documents/
H A Dblocks.py2 from django.utils.html import format_html
31 return format_html('<a href="{0}">{1}</a>', value.url, value.title)
/dports/www/py-djangorestframework/djangorestframework-3.12.4/rest_framework/templatetags/
H A Drest_framework.py8 from django.utils.html import escape, format_html, smart_urlquote
101 snippet = format_html(snippet, href=login_url, next=escape(request.path))
117 snippet = format_html(snippet, href=login_url, next=escape(request.path))
130 snippet = format_html('<li class="navbar-text">{user}</li>', user=escape(user))
142 snippet = format_html(snippet, user=escape(user), href=logout_url, next=escape(request.path))
/dports/www/py-dj32-djangorestframework/djangorestframework-3.12.4/rest_framework/templatetags/
H A Drest_framework.py8 from django.utils.html import escape, format_html, smart_urlquote
101 snippet = format_html(snippet, href=login_url, next=escape(request.path))
117 snippet = format_html(snippet, href=login_url, next=escape(request.path))
130 snippet = format_html('<li class="navbar-text">{user}</li>', user=escape(user))
142 snippet = format_html(snippet, user=escape(user), href=logout_url, next=escape(request.path))
/dports/www/py-django-tables2/django-tables2-2.4.1/django_tables2/columns/
H A Djsoncolumn.py3 from django.utils.html import format_html
54 return format_html(
/dports/www/py-dj32-django-tables2/django-tables2-2.4.1/django_tables2/columns/
H A Djsoncolumn.py3 from django.utils.html import format_html
54 return format_html(

12345678910>>...20