Add language tags definition, caret and bubbles in editor.
[redakcja.git] / src / wlxml / templates / wlxml / tag_detail.html
1 {% extends "documents/base.html" %}
2
3
4 {% block content %}
5 <h1>{{ object }}</h1>
6
7 <p>{{  object.description|linebreaksbr }}</p>
8
9 <h2>Przykład</h2>
10 <pre style="border:1px solid black;padding: 1em; margin: 2em;">{{ object.example }}</pre>
11
12
13 <h2>HTML</h2>
14 <iframe src="{{ object.example_html.url }}" style="width: 100%; height: 500px;"></iframe>
15
16 <h2>PDF</h2>
17 <iframe src="{{ object.example_pdf.url }}" style="width: 100%; height: 500px;"></iframe>
18
19 <h2>TXT</h2>
20 <iframe src="{{ object.example_txt.url }}" style="width: 100%; height: 500px;"></iframe>
21
22
23 {% endblock %}