| 125 | |
| 126 | |
| 127 | class Stylesheet(MediaAsset): |
| 128 | element_template = '<link href="{path}"{attributes}>' |
| 129 | |
| 130 | def __init__(self, href, **attributes): |
| 131 | super().__init__(path=href, rel="stylesheet", **attributes) |
| 132 | |
| 133 | |
| 134 | @html_safe |
no outgoing calls