Git Product home page Git Product logo

app-generator / django-black-dashboard Goto Github PK

View Code? Open in Web Editor NEW
330.0 9.0 118.0 4.73 MB

Django Dashboard Black - Open-source Seed Project | AppSeed

Home Page: https://appseed.us/product/black-dashboard/django/

License: Other

Shell 0.03% Dockerfile 0.06% Python 1.42% HTML 20.12% JavaScript 5.52% CSS 5.43% SCSS 67.41%
appseed django-dashboard django-template black-design django-admin-theme django-theme django-admin django-bootstrap django-project django-bootstrap4

django-black-dashboard's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

django-black-dashboard's Issues

Can't not reach any urls for new app

Hello,

I am trying to create my own app inside the project, but the URLs reverse doesn't work.
For example, I created an app call user_profile, and I want to change the User Profile when the user clicks the "Profile" button.

<li class="nav-link"><a href="{% url 'profile' %}" class="nav-item dropdown-item">Profile</a></li> # navigattion.html

However, only inside your original "app" folder, this button will work, for any other new apps, it won't work.
Is this only possible for Pro Version?

path('user-profile/', include("user_profile.urls")) # core.urls for new app user_profile

urlpatterns = [ path('profile', views.user_profile_view, name='profile') ] # urls for user_profile

views

@login_required
def user_profile_view(request):
    profile = Profile.objects.get(user=request.user)
    form = ProfileForm(request.POST or None, request.FILES or None, instance=profile)
    confirm = False
    if form.is_valid():
        form.save()
        confirm = True
    context = {
        'profile': profile,
        'form': form,
        'confirm': confirm,
    }

    return render(request, 'user_profile/profile.html', context) 

I create a folder called user_profile inside templates,
thank you so much.

Can't find _brand.scss

Hi,

I would like to change the brand color but I can't find the _brand.scss file.

I tried changing the _variables.scss and recompiling scss with gulp but it doesn't seem to change colors.

How to get Black Dashboard into Visual Studio 2019

I used the Git add-in in Visual Studio 2019 to clone this project locally, but no matter what I do, I cannot get Visual Studio to recognize it as a Django Web Project. VS just thinks it's a lot of folders and files. There is no way to execute it. I also tried creating a new Blank Django Web Project in VS and then copying the files from the local Git repository into the project folder it creates, but again, it won't run. It just launches the default blank project I created even though I replaced the new manage.py and requirements.txt files with the ones from the clone. VS uses it's own folder structure to organize Django projects and I can't figure out how to get the folders in this Black Dashboard project to line up they way it wants it.

How do I get this project to work in VS?

File nucleo.svg is missing

Hi,

In file static/assets/css/nucleo-icons.css you have a next line:
url('../fonts/nucleo.svg') format('svg');

But actually in folder static/assets/fonts file nucleo.svg is missing

Could you please fix that bug?

Thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.