> Version 0.6 brings DashMachine one big step forward to being a finished product by adding a gui to edit the various settings in the config.ini. **Changelog** - improvements to /home including 'pinned' cards, multi-select tag filtering, 'action providers' allowing you to do web searches from the searchbar - rebuilt sidenav with list view, mirroring filter/search/collapse state of the homepage - /settings and /home now on same route - dynamic reloading of settings (no more page reloads) - dedicated config.ini editor slide-out - settings editor slide-out - card editor slide-out - better access group control - dedicated documentation pages - improved documentation - new system for automatically generating documentation for platforms - ability to load custom platforms - added an 'on_starup' method for platforms allowing for registering api routes. (example coming soon)
38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
{% extends "main/layout.html" %}
|
|
{% from 'global_macros.html' import ActionBar %}
|
|
{% from 'main/cards.html' import HomeCards %}
|
|
|
|
{% block page_vendor_css %}
|
|
{% endblock page_vendor_css %}
|
|
|
|
{% block page_lvl_css %}
|
|
{{ process_css_sources(src="main/home.css")|safe }}
|
|
{% endblock page_lvl_css %}
|
|
|
|
{% block content %}
|
|
<div id="main" class="main-full">
|
|
<div class="container">
|
|
{% if access_group.can_access_card_editor == "True" and access_group.can_see_sidenav == "True" %}
|
|
<div class="fixed-action-btn">
|
|
<a href="#" data-target="card-editor-sidenav" class="btn-floating theme-primary card-editor-add-from-home-btn sidenav-trigger">
|
|
<i class="material-icons-outlined theme-on-primary-text">add</i>
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{{ ActionBar(tags, location="home") }}
|
|
<div id="home-cards-container"
|
|
data-url="{{ url_for('main.load_apps', home="true") }}"
|
|
class="row">
|
|
{{ HomeCards(apps, tags) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|
|
|
|
{% block page_vendor_js %}
|
|
{% endblock page_vendor_js %}
|
|
|
|
{% block page_lvl_js %}
|
|
{{ process_js_sources(src="main/home.js")|safe }}
|
|
{% endblock page_lvl_js %} |