mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-04-04 23:20:42 +00:00
Merge branch 'master' of github.com:pydanny/django-admin2
This commit is contained in:
commit
44ae271a2e
9 changed files with 51 additions and 6 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -49,4 +49,7 @@ lp-cache
|
|||
_data
|
||||
|
||||
# PostgreSQL
|
||||
logfile
|
||||
logfile
|
||||
|
||||
# SQLite
|
||||
*.db
|
||||
9
djadmin2/static/themes/bootstrap/css/bootstrap-responsive.min.css
vendored
Normal file
9
djadmin2/static/themes/bootstrap/css/bootstrap-responsive.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
9
djadmin2/static/themes/bootstrap/css/bootstrap.min.css
vendored
Normal file
9
djadmin2/static/themes/bootstrap/css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
Binary file not shown.
|
After Width: | Height: | Size: 8.6 KiB |
BIN
djadmin2/static/themes/bootstrap/img/glyphicons-halflings.png
Normal file
BIN
djadmin2/static/themes/bootstrap/img/glyphicons-halflings.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
6
djadmin2/static/themes/bootstrap/js/bootstrap.min.js
vendored
Normal file
6
djadmin2/static/themes/bootstrap/js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
19
djadmin2/templates/admin2/bootstrap/base.html
Normal file
19
djadmin2/templates/admin2/bootstrap/base.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>django-admin2</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- Bootstrap -->
|
||||
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container-fluid">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
|
||||
<script src="http://code.jquery.com/jquery.js"></script>
|
||||
<script src="js/bootstrap.min.js"></script>
|
||||
{% block extrajs %}{% endblock %}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
<html>
|
||||
<body>
|
||||
{% extends "admin/base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1>Index</h1>
|
||||
|
||||
{{ object_list }}
|
||||
|
|
@ -8,6 +9,4 @@
|
|||
<tr><td>{{ obj.app_name }}</td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
{% endblock content %}
|
||||
|
|
|
|||
Binary file not shown.
Loading…
Reference in a new issue