app-generator / django-material-dashboard

Django Dashboard - Material Design | AppSeed
https://appseed.us/product/material-dashboard/django/
Other
234 stars 82 forks source link

adding the content of the django apps to the dashboard #10

Closed Shiro1n closed 1 year ago

Shiro1n commented 1 year ago

hi, i would like to get help with adding the contents of my apps to the dashboard. my project structure has apps for the each model for easy management but im having an issue about putting them to the dashboard this is how my folder structure looks like image

app-generator commented 1 year ago

Hello @Shiro1n

Please pull the latest version v1.0.11. The templates folder now has sidebar.html where you can add new links:

https://github.com/app-generator/django-material-dashboard/blob/a71bdbe30171cad16b8e1c67d07f961effc346a3/templates/includes/sidebar.html#L80

        <!--
        <li class="nav-item">
          <a class="nav-link text-white {% if 'SEGMENT_HERE' in segment %} active {% endif %} " href="#">
            <div class="text-white text-center me-2 d-flex align-items-center justify-content-center">
              <i class="material-icons opacity-10">table_view</i>
            </div>
            <span class="nav-link-text ms-1">LINK_HERE</span>
          </a>
        </li>
        -->

Take a look and let us know if helps.