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 .

Quick start

Add erscimenu to your INSTALLED_APPS setting like this:

INSTALLED_APPS = [
...,
'erscimenu' ,
]

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

from erscimenu.models import MenuModel
admin.site.register(MenuModel)

and add your menu into it.

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

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

from erscimenu.menu import MenuClass
from erscimenu.models import MenuModel

def index(request):
	c=MenuClass(MenuModel.objects.all())
	return HttpResponse(c.menu())

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

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

Model is like this:

class MenuModel(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) 
	def __str__(self):
		return self.title

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.8.tar.gz (15.2 kB view details)

Uploaded Source

File details

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

File metadata

  • Download URL: erscimenu-1.0.8.tar.gz
  • Upload date:
  • Size: 15.2 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.8.tar.gz
Algorithm Hash digest
SHA256 4284a56db605a8d5de2d805796bf58392e595d920d0620b5e21e3325a992a96e
MD5 4bf869569af4e07c8d7b845136cc469b
BLAKE2b-256 9ecaeae6836e9a6d13463132cc3155a2f00a549c312c839813bf8a47eafae641

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