Hacking towards the second.py functionality
This commit is contained in:
17
magic_app/templates/app_list.html
Normal file
17
magic_app/templates/app_list.html
Normal file
@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html>
|
||||
<head>
|
||||
<title>Application Listing</title>
|
||||
</head>
|
||||
<body>
|
||||
<ul>
|
||||
{% for app in apps %}
|
||||
<li>
|
||||
<a href="{{ url_for('apps.install', app_name=app) }}">{{ app }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
Reference in New Issue
Block a user