File indexing completed on 2024-05-12 03:53:40

0001 <h2 class="h4">Table of Content</h2>
0002 <div class="menu-content">
0003   <ul>
0004     {% if group.libraries | selectattr('subproducts', 'none') | list | length > 0 %}
0005     {% if group.subproduct | length > 0 %}
0006     <li><a href="#sg-{{ nosubproduct }}">Without subgroup</a></li>
0007     {% else  %}
0008     <li><a href="#content">All</a></li>
0009     {% endif %}
0010     {% endif %}
0011     {% for subproduct in group.subproducts | sort(attribute='order') %}
0012     <li><a href="#sg-{{ subproduct.name }}">{{ subproduct.fancyname }}</a></li>
0013     {% endfor %}
0014   </ul>
0015 </div>
0016 
0017 <h2 class="h4">Filters</h2>
0018 <div class="menu-content">
0019   <ul class="list-unstyled">
0020     <li>
0021     <label>
0022       <input id="platform-filter" type="checkbox"> Filter by platform
0023     </label>
0024     <ul id="platform-filter-group" style="display: none"class="list-unstyled">
0025       <li><br><i>Only show libraries which supports all of:</i></li>
0026       {% for platform in available_platforms | sort %}
0027       <li>
0028         <label>
0029         <input data-platform="{{ platform }}" class="platform-checkbox" type="checkbox" checked="1"> {{ platform }}
0030         </label>
0031       </li>
0032       {% endfor %}
0033       <br />
0034     </ul>
0035     </li>
0036     <li>
0037     <label>
0038         <input id="showMaintainers" type="checkbox"> Show maintainers
0039     </label>
0040     </li>
0041   </ul>
0042 </div>
0043 
0044 <h2 class="h4">About</h2>
0045 <p>{{ group.description }}</p>
0046 
0047 <dl>
0048   <dt>Maintainer{% if group.maintainers|count > 1 %}s{% endif %}</dt>
0049   <dd>{% set product = group %}{% include "maintainers.html" %}</dd>
0050   {% if group.platforms %}
0051     <dt>Supported platforms</dt>
0052     <dd>{{ group.platforms | sort | join(', ') }}</dd>
0053   {% endif %}
0054   <dt>Community</dt>
0055   <dd>IRC channel: <a href="irc://irc.libera.chat/#{{ group.irc }}">#{{ group.irc }}</a> on Libera Chat</dd>
0056   <dd>Mailing list: <a href="https://mail.kde.org/mailman/listinfo/{{ group.mailinglist }}">{{ group.mailinglist }}</a></dd>
0057 </dl>