-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have a list of uploaded apps available #16
Comments
isn't the title of the issue misleading? What do the installed apps have todo with the available apps and categories? |
@LukasReschke we need some JS guys for this. If we go for Python and HTML, it's 3 lines of Python code, one line for a route and an html template :) |
Something like this: from django.views.generic.list import ListView
from nextcloudappstore.core.models import App
AppsView(ListView):
model = Apps
# urls for the homepage
url(r'^apps/?$', AppsView.as_view(), name='apps) |
If it is that easy in Django I'm happy to also go the HTML and Django route :) |
intial draft of home page for #16
Closed via #20 |
The home page should show the categories as well as the list of applications that are available. If somebody clicks on an application more details about it should be shown.
Probably best to solve this completely with some JS magic and not use any Python logic for this.
The text was updated successfully, but these errors were encountered: