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" %} |
|||
|
|||
{% block extrastyle %} |
|||
{% block extrahead %} |
|||
{{ block.super }} |
|||
<style> |
|||
td.number { |
|||
text-align: right; |
|||
} |
|||
.panel-body { |
|||
max-height: 400px; |
|||
overflow: auto; |
|||
} |
|||
</style> |
|||
{{ headers|safe }} |
|||
{% endblock %} |
|||
|
|||
{% block content %} |
|||
<div id="content-main"> |
|||
{% include "saberes/snippets.html" %} |
|||
</div> |
|||
{{ content|safe }} |
|||
{% endblock %} |
|||
|
@ -1,9 +1,13 @@ |
|||
# coding: utf-8 |
|||
from django.conf.urls import patterns, url |
|||
|
|||
from .views import cursos_sem_tutoria, dashboard, pentaho_proxy |
|||
|
|||
|
|||
urlpatterns = patterns( |
|||
'sigi.apps.saberes.views', |
|||
|
|||
url(r'^dashboard/$', 'dashboard', name="saberes-dashboard-view"), |
|||
url(r'^dashboard/(?P<area>\w+)/$', 'detail', name="saberes-dashboard-detail"), |
|||
url(r'^dashboard/cursos-sem-turoria/?$', cursos_sem_tutoria, 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