mirror of https://github.com/interlegis/sigi.git
Marcio Mazza
10 years ago
7 changed files with 68 additions and 44 deletions
@ -1,20 +1,10 @@ |
|||||
{% extends "admin/base_site.html" %} |
{% extends "admin/base_site.html" %} |
||||
|
|
||||
{% block extrastyle %} |
{% block extrahead %} |
||||
{{ block.super }} |
{{ block.super }} |
||||
<style> |
{{ headers|safe }} |
||||
td.number { |
|
||||
text-align: right; |
|
||||
} |
|
||||
.panel-body { |
|
||||
max-height: 400px; |
|
||||
overflow: auto; |
|
||||
} |
|
||||
</style> |
|
||||
{% endblock %} |
{% endblock %} |
||||
|
|
||||
{% block content %} |
{% block content %} |
||||
<div id="content-main"> |
{{ content|safe }} |
||||
{% include "saberes/snippets.html" %} |
|
||||
</div> |
|
||||
{% endblock %} |
{% endblock %} |
||||
|
@ -1,9 +1,13 @@ |
|||||
# coding: utf-8 |
# coding: utf-8 |
||||
from django.conf.urls import patterns, url |
from django.conf.urls import patterns, url |
||||
|
|
||||
|
from .views import cursos_sem_tutoria, dashboard, pentaho_proxy |
||||
|
|
||||
|
|
||||
urlpatterns = patterns( |
urlpatterns = patterns( |
||||
'sigi.apps.saberes.views', |
'sigi.apps.saberes.views', |
||||
|
|
||||
url(r'^dashboard/$', 'dashboard', name="saberes-dashboard-view"), |
url(r'^dashboard/cursos-sem-turoria/?$', cursos_sem_tutoria, name="saberes-dashboard-detail"), |
||||
url(r'^dashboard/(?P<area>\w+)/$', 'detail', name="saberes-dashboard-detail"), |
url(r'^dashboard/?$', dashboard, name="saberes-dashboard-view"), |
||||
|
url(r'^(?P<path>(plugin|api)/.*)$', pentaho_proxy), |
||||
) |
) |
||||
|
Loading…
Reference in new issue