Skip to main content

Create UL LI html menu from django model queryset.

Project description

Erscimenu

Create UL LI html menu from django model queryset . into your views or your template.

Quick start

Add erscimenu to your INSTALLED_APPS setting like this: INSTALLED_APPS = [ ..., 'erscimenu' , ]

2.(Optional) Register Ulmenu to admin like this:

from erscimenu.models import Ulmenu

admin.site.register(Ulmenu)

and add your menu into it.

3.Run python manage.py makemigrations and python manage.py migrate to create the Ulmenu models.

4.Use this command to add menu with your views:

from erscimenu.menu import MenuClass

from erscimenu.models import Ulmenu

cl = MenuClass()

clmenu = cl.ulmenu(Ulmenu.objects.all(),None)

return render(request,"index.html",{'model' : model })

Note : 'model' is variable to use in your template.

Or create your model like this:

class Ulmenu(models.Model):

title = models.CharField(max_length=100)

css_class = models.CharField(max_length=100,null=True,blank=True)

link = models.CharField(max_length=1000,null=True,blank=True)

parent = models.ForeignKey("self", models.DO_NOTHING,null=True,blank=True,db_column='parent',related_name='children') 

def __str__(self):

	return self.title

4.Run python manage.py runserver Visit http://127.0.0.1:8000 to create users and its cards.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

erscimenu-1.0.4.tar.gz (15.6 kB view details)

Uploaded Source

File details

Details for the file erscimenu-1.0.4.tar.gz.

File metadata

  • Download URL: erscimenu-1.0.4.tar.gz
  • Upload date:
  • Size: 15.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for erscimenu-1.0.4.tar.gz
Algorithm Hash digest
SHA256 ffc6f41494c00661ee109486b69341746a9d4ee2d96e384d5e153318e31333e0
MD5 fc17db5113ff74e4c3f214a2c1eeec53
BLAKE2b-256 5b29c318544df53a49a703d862d93f667e34c7657c38d63f50c745ad762719d5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page