A
Anonymous

Branch Listing Component - Copy this Html, Tailwind Component to your project

Design this page ok {% extends 'base.html' %} {% block content %} <div class="container mx auto mt 8 p 4 bg white rounded lg shadow md"> <h2 class="text 2xl font bold text green 600 mb 6">Your Branches</h2> <ul class="space y 4"> {% for branch in branches %} <li> <a href="{% url 'dashboard' branch.id %}" class="block px 4 py 2 bg dark gray text orange 500 rounded md hover:bg orange 500 transition"> {{ branch.name }} </a> </li> {% endfor %} </ul> </div> {% endblock %}

Prompt
Component Preview

About

Branch Listing Component - Display your branches in a stylish list with links, using a responsive design professionally built with HTML and Tailwind. Copy code today!

Share

Last updated 1 month ago