├── .bowerrc ├── .coveragerc ├── .gitignore ├── .tx └── config ├── Dockerfile ├── Gruntfile.js ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README-DOCS.md ├── README.md ├── Vagrantfile ├── accounts ├── __init__.py ├── adapter.py ├── admin.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160224_0053.py │ ├── 0003_timtecuser_cpf.py │ ├── 0004_auto_20180203_0020.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests │ ├── __init__.py │ ├── test_acceptance.py │ ├── test_forms.py │ ├── test_models.py │ └── test_views.py └── views.py ├── activities ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_activity_image.py │ ├── 0003_auto_20160730_1743.py │ ├── 0004_auto_20160817_1837.py │ ├── 0005_auto_20161117_1152.py │ └── __init__.py ├── models.py ├── serializers.py ├── signals.py ├── static │ ├── js │ │ └── activities │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ ├── directives.js │ │ │ └── services.js │ └── templates │ │ ├── activity_discussion.html │ │ ├── activity_html5.html │ │ ├── activity_image.html │ │ ├── activity_markdown.html │ │ ├── activity_multiplechoice.html │ │ ├── activity_php.html │ │ ├── activity_presentation.html │ │ ├── activity_reading.html │ │ ├── activity_relationship.html │ │ ├── activity_simplechoice.html │ │ ├── activity_slidesreveal.html │ │ ├── activity_trueorfalse.html │ │ └── directives │ │ ├── basic_response_panel.html │ │ ├── slide_panel.html │ │ ├── slidesreveal.html │ │ └── text_markdown_response_panel.html └── views.py ├── administration ├── __init__.py ├── serializer.py ├── static │ ├── app │ │ ├── admin.lesson.app.js │ │ ├── controllers │ │ │ └── admin.lesson.controllers.js │ │ └── services │ │ │ └── admin.lesson.services.js │ ├── js │ │ ├── admin.js │ │ ├── course-permissions │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── services.js │ │ ├── courses │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── filters.js │ │ ├── directives │ │ │ ├── alertPopup.js │ │ │ ├── codemirror.js │ │ │ ├── contenteditable.js │ │ │ ├── file.js │ │ │ ├── fixedBar.js │ │ │ ├── markdowneditor.js │ │ │ ├── previewImage.js │ │ │ ├── sortable.js │ │ │ └── waiting-screen.js │ │ ├── edit-class │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── services.js │ │ ├── factories │ │ │ └── timtec-models.js │ │ ├── filters │ │ │ ├── he.js │ │ │ └── text.js │ │ ├── messages │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── services.js │ │ ├── new-course │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── directives.js │ │ ├── profile-admin │ │ │ ├── profile.app.js │ │ │ ├── profile.controllers.js │ │ │ └── profile.services.js │ │ └── users-admin │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── services.js │ └── templates │ │ ├── activities │ │ ├── activity_discussion.html │ │ ├── activity_html5.html │ │ ├── activity_image.html │ │ ├── activity_markdown.html │ │ ├── activity_multiplechoice.html │ │ ├── activity_reading.html │ │ ├── activity_relationship.html │ │ ├── activity_simplechoice.html │ │ ├── activity_slidesreveal.html │ │ └── activity_trueorfalse.html │ │ ├── directive.codemirror.html │ │ ├── directive.markdowneditor.html │ │ ├── directive.modalmarkdowneditor.html │ │ └── directive.modalmarkdowneditorwithtitle.html ├── tests │ ├── __init__.py │ └── test_views.py ├── urls.py └── views.py ├── bower.json ├── conftest.py ├── core ├── __init__.py ├── admin.py ├── context_processors.py ├── fixtures │ ├── initial-dev.json │ └── initial.json ├── forms.py ├── loaders.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── create_student_and_professor.py │ │ ├── delete_studentdata.py │ │ ├── enroll_all_users_in_classes.py │ │ ├── export_all_users.py │ │ ├── find_by_city.py │ │ ├── generate_initial_data.py │ │ ├── import_users.py │ │ └── report.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150904_1738.py │ ├── 0003_auto_20151003_2000.py │ ├── 0004_auto_20151104_0157.py │ ├── 0005_auto_20151104_0455.py │ ├── 0006_coursecertification_course.py │ ├── 0007_auto_20151202_1434.py │ ├── 0008_auto_20151203_1519.py │ ├── 0009_remove_coursecertification_course.py │ ├── 0010_auto_20160131_1543.py │ ├── 0011_auto_20160131_1558.py │ ├── 0012_auto_20160131_1643.py │ ├── 0013_auto_20160315_0215.py │ ├── 0014_auto_20160317_2130.py │ ├── 0015_auto_20160406_0152.py │ ├── 0016_class_user_can_certificate_even_without_progress.py │ ├── 0016_course_groups.py │ ├── 0017_auto_20161014_2107.py │ ├── 0017_coursestudent_start_date.py │ ├── 0018_auto_20161014_2116.py │ ├── 0019_auto_20161014_2116.py │ ├── 0020_merge.py │ ├── 0021_class_assistants.py │ ├── 0022_auto_20161125_1116.py │ ├── 0023_remove_class_assistant.py │ ├── 0024_certificatetemplate_signature.py │ ├── 0025_auto_20170116_1405.py │ ├── 0026_auto_20170120_1829.py │ ├── 0027_auto_20170125_1147.py │ ├── 0028_auto_20171226_1217.py │ └── __init__.py ├── models.py ├── permissions.py ├── serializers.py ├── static │ ├── js │ │ ├── certificate │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ ├── filters.js │ │ │ └── services.js │ │ ├── consolelogfallback.js │ │ ├── core-services.js │ │ ├── core │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ ├── filters.js │ │ │ └── services.js │ │ ├── dashboard │ │ │ ├── dashboard-app.js │ │ │ └── dashboard-controllers.js │ │ ├── directives │ │ │ └── layout.js │ │ ├── django.js │ │ ├── lesson │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ ├── directives.js │ │ │ └── services.js │ │ ├── my-courses │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ ├── filters.js │ │ │ └── services.js │ │ ├── profile │ │ │ ├── profile.app.js │ │ │ ├── profile.controllers.js │ │ │ └── profile.services.js │ │ └── ui.tinymce.config.js │ └── templates │ │ ├── lesson_activity.html │ │ ├── lesson_video.html │ │ └── livechat.html ├── templates │ └── djangular.js ├── templatetags │ ├── __init__.py │ ├── append_to_get.py │ ├── get_current_class.py │ ├── get_flatpage.py │ ├── in_group.py │ ├── is_assistant_or_coordinator.py │ ├── is_coordinator.py │ ├── is_course_coordinator.py │ ├── is_enrolled.py │ ├── timtec_markdown.py │ └── usergroup.py ├── tests │ ├── test_acceptance.py │ ├── test_models.py │ └── test_views.py ├── utils.py └── views.py ├── course_material ├── __init__.py ├── admin.py ├── fixtures │ └── dev_data.json ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── static │ └── js │ │ └── course_material │ │ ├── app.js │ │ ├── controllers.js │ │ ├── directives.js │ │ ├── filters.js │ │ └── services.js ├── tests │ ├── __init__.py │ ├── dummy_file.txt │ └── test_views.py └── views.py ├── docker ├── nginx.conf └── supervisord.conf ├── docs ├── Instalação.srt ├── Papeis-de-Usuários.md ├── _static │ ├── css │ │ └── timtec.css │ ├── img │ │ ├── Octocat.png │ │ ├── background.png │ │ ├── cabecafundo.png │ │ ├── dev.png │ │ ├── docs.png │ │ ├── icons │ │ │ ├── g35724.png │ │ │ ├── g35766.png │ │ │ ├── g36532.png │ │ │ ├── path36494.png │ │ │ ├── path36514.png │ │ │ └── path36796.png │ │ ├── instituto-tim-white.png │ │ ├── logo-timtec.png │ │ └── software.png │ └── professor │ │ ├── addaula.png │ │ ├── addaulas.png │ │ ├── addturma.png │ │ ├── addturma2.png │ │ ├── administracao1.png │ │ ├── apagar.png │ │ ├── atividades.png │ │ ├── aulastatus.png │ │ ├── botaoorganizaraulas.png │ │ ├── camposcurso.jpg │ │ ├── camposcursoN.png │ │ ├── cursosdahome.png │ │ ├── datainicio.png │ │ ├── duvidas.png │ │ ├── duvidas1.png │ │ ├── editaratividade.png │ │ ├── editarhome.png │ │ ├── editarhome2.png │ │ ├── editarhome3.png │ │ ├── escolhasimples.png │ │ ├── estruturacurso.png │ │ ├── exportar.png │ │ ├── ferramentas.png │ │ ├── ferramentasCursos.png │ │ ├── forum.png │ │ ├── forumexemplo.png │ │ ├── html5.png │ │ ├── importar.png │ │ ├── instrutores.png │ │ ├── login.png │ │ ├── materiaisadicionais.png │ │ ├── materiaisadicionaisedit.png │ │ ├── mensagens.png │ │ ├── mensagens2.png │ │ ├── menuaulas.png │ │ ├── meuscursos.png │ │ ├── meuscursos2.png │ │ ├── meuscursos3.png │ │ ├── multiplaescolha.png │ │ ├── novaunidade.png │ │ ├── novaunidade2.png │ │ ├── novocurso.png │ │ ├── novocursoinicio.png │ │ ├── organizaraulas.png │ │ ├── paginaaula.png │ │ ├── paginaaulaN.png │ │ ├── papeisprofs.png │ │ ├── permissaoprof2.png │ │ ├── permissaoprof3.png │ │ ├── permissoes.png │ │ ├── permissoes2.png │ │ ├── permissoes3.png │ │ ├── permissoes4.png │ │ ├── permissoesprofs.png │ │ ├── pqfazer.png │ │ ├── precisosaber.png │ │ ├── procuraruser.png │ │ ├── progressonecessario.png │ │ ├── relacionarsentencas.png │ │ ├── relatorios.png │ │ ├── relatorios2.png │ │ ├── relatorios3.png │ │ ├── relatorios4.png │ │ ├── removeratividade.png │ │ ├── removeratividadecirculado.png │ │ ├── removerunidade.png │ │ ├── reordenaraulas.png │ │ ├── resumo.png │ │ ├── rodape.png │ │ ├── sobre.png │ │ ├── statusrascunho.png │ │ ├── textosimples.png │ │ ├── tipoatividades.png │ │ ├── tiposatividades.png │ │ ├── titulonovocurso.png │ │ ├── trocarvideo.png │ │ ├── turmas.png │ │ ├── unidadeinserirvideo.png │ │ ├── verdadeirooufalso.png │ │ └── videothumbnailhome.png ├── _templates │ ├── breadcrumbs.html │ ├── footer.html │ ├── layout.html │ ├── search.html │ ├── searchbox.html │ └── versions.html ├── desenvolvimento │ ├── Atividades.md │ ├── Criando-Ambiente-de-Desenvolvimento.md │ ├── DjangoTools.md │ ├── Planorefatoracao.md │ ├── Temas.md │ └── Tutorial-para-criação-de-tema.md ├── index.md ├── index.rst ├── instalacao_e_configuracao │ ├── Alterando-locale-para-pt_BR.md │ ├── Atividades.md │ ├── Atualizando-a-partir-da-versão-3.0.10-ou-inferior.md │ ├── Atualização.md │ ├── Autenticando-no-Timtec-com-OpenID-do-Moodle.md │ ├── Configurando Envio de E-mails(SMTP).md │ ├── Configurações-(Versão-3.0.10-e-inferiores).md │ ├── Configurações.md │ ├── DjangoTools.rst │ ├── Instalação.md │ ├── Temas.md │ └── Tutorial-para-criação-de-tema.md ├── manual_admin.rst ├── manual_dev.rst ├── manual_professor.rst ├── manual_professor │ ├── atividades.rst │ ├── aulas.rst │ ├── cursos.rst │ ├── duvidas.rst │ ├── estatisticas.rst │ ├── materialadicional.rst │ ├── mensagens.rst │ ├── papeis.rst │ ├── turmas.rst │ └── unidades.rst └── requirements.txt ├── forum ├── __init__.py ├── admin.py ├── fixtures │ └── dev_data.json ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20151104_0455.py │ └── __init__.py ├── models.py ├── permissions.py ├── serializers.py ├── static │ └── js │ │ ├── forum │ │ ├── app.js │ │ ├── controllers.js │ │ ├── directives.js │ │ ├── filters.js │ │ └── services.js │ │ └── truncate.js ├── tests │ ├── __init__.py │ ├── js │ │ └── test-controllers.js │ ├── test_forms.py │ └── test_views.py └── views.py ├── ifs ├── __init__.py ├── admin.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160411_1821.py │ └── __init__.py ├── models.py ├── urls.py └── view.py ├── jshint.conf ├── locale ├── angular.pot ├── es │ └── LC_MESSAGES │ │ └── django.po ├── it │ └── LC_MESSAGES │ │ └── django.po └── pt_BR │ └── LC_MESSAGES │ └── django.po ├── manage.py ├── media └── .gitignore ├── mkdocs.yml ├── notes ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── static │ └── js │ │ └── notes │ │ ├── app.js │ │ ├── controllers.js │ │ └── services.js └── views.py ├── package.json ├── reports ├── __init__.py ├── serializer.py ├── static │ └── js │ │ └── reports │ │ ├── app.js │ │ ├── controllers.js │ │ └── services.js └── views.py ├── requirements ├── base.txt ├── local.txt ├── paralapraca.txt ├── production.txt └── test.txt ├── scripts ├── bootstrap-ubuntu.sh ├── conf │ ├── nginx-timtec-production │ └── timtec-production.ini ├── env-setup.sh └── production-ubuntu.sh ├── setup.cfg ├── setup.py ├── simplecors.py ├── static └── .gitignore ├── tests ├── test_collectstatic.py └── test_fullstack.py ├── themes ├── default │ ├── static │ │ ├── css │ │ │ └── codemirrorconf.css │ │ ├── fonts │ │ │ └── questrial │ │ │ │ ├── questrial-regular-webfont.eot │ │ │ │ ├── questrial-regular-webfont.ttf │ │ │ │ └── questrial-regular-webfont.woff │ │ ├── img │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right.png │ │ │ ├── aula-thumb.png │ │ │ ├── avatar-default.png │ │ │ ├── banner-home.jpg │ │ │ ├── lesson-default.png │ │ │ ├── logo-instituto-tim.png │ │ │ ├── receipt-bg.png │ │ │ └── selected.png │ │ ├── js │ │ │ ├── angular-youtube.js │ │ │ ├── codemirrorconf.js │ │ │ ├── contact_form.js │ │ │ ├── helpers.js │ │ │ ├── introjs │ │ │ │ ├── admin-lesson.js │ │ │ │ ├── course.js │ │ │ │ ├── home.js │ │ │ │ └── lesson.js │ │ │ ├── markdown │ │ │ │ ├── app.js │ │ │ │ ├── directives.js │ │ │ │ └── filters.js │ │ │ ├── truncate.js │ │ │ └── vendor │ │ │ │ ├── angular-ui-codemirror │ │ │ │ └── ui-codemirror.js │ │ │ │ └── pagedown │ │ │ │ ├── Markdown.Converter.js │ │ │ │ ├── Markdown.Editor.js │ │ │ │ └── Markdown.Sanitizer.js │ │ └── less │ │ │ ├── default │ │ │ ├── components │ │ │ │ ├── actions-menu.less │ │ │ │ ├── alerts.less │ │ │ │ ├── autocomplete.less │ │ │ │ ├── buttons.less │ │ │ │ ├── contenteditable.less │ │ │ │ ├── course-box.less │ │ │ │ ├── course-nav.less │ │ │ │ ├── dropzone.less │ │ │ │ ├── filters.less │ │ │ │ ├── footer.less │ │ │ │ ├── headers.less │ │ │ │ ├── loading.less │ │ │ │ ├── modal.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── tables.less │ │ │ │ └── text-editor.less │ │ │ ├── modules │ │ │ │ ├── helpers.less │ │ │ │ ├── mixins.less │ │ │ │ └── settings.less │ │ │ └── pages │ │ │ │ ├── admin.less │ │ │ │ ├── certificate.less │ │ │ │ ├── classes.less │ │ │ │ ├── course-activity.less │ │ │ │ ├── course-content.less │ │ │ │ ├── courses.less │ │ │ │ ├── evaluations.less │ │ │ │ ├── forum.less │ │ │ │ ├── home.less │ │ │ │ ├── messages.less │ │ │ │ ├── my-courses.less │ │ │ │ ├── my-notes.less │ │ │ │ ├── profile.less │ │ │ │ ├── registration.less │ │ │ │ ├── stats.less │ │ │ │ └── users.less │ │ │ ├── flatui │ │ │ └── checkbox-and-radio.less │ │ │ ├── introjs.less │ │ │ └── main-default.less │ └── templates │ │ ├── _admin_header_inline.html │ │ ├── _certificate-certificate.html │ │ ├── _certificate-receipt.html │ │ ├── _class-professors-inline.html │ │ ├── _contact_form.html │ │ ├── _course-details-inline.html │ │ ├── _course-header-inline.html │ │ ├── _course_authors_inline.html │ │ ├── _course_professors_modal.html │ │ ├── _courses_aside.html │ │ ├── _create_class_modal.html │ │ ├── _evaluation_details_modal.html │ │ ├── _forum_inline.html │ │ ├── _go-to-course-button-inline.html │ │ ├── _highlight.html │ │ ├── _lesson_header.html │ │ ├── _login_modal.html │ │ ├── _modal_about.html │ │ ├── _modal_course_complete.html │ │ ├── _notes_inline.html │ │ ├── _signup_modal.html │ │ ├── accept-terms.html │ │ ├── account │ │ ├── activate.html │ │ ├── base.html │ │ ├── email │ │ │ ├── email_confirmation_message.txt │ │ │ ├── email_confirmation_subject.txt │ │ │ ├── password_reset_key_message.txt │ │ │ └── password_reset_key_subject.txt │ │ ├── email_confirm.html │ │ ├── email_confirmed.html │ │ ├── login.html │ │ ├── login_modal.html │ │ ├── password_reset.html │ │ ├── password_reset_done.html │ │ ├── password_reset_from_key.html │ │ ├── password_reset_from_key_done.html │ │ ├── signup.html │ │ └── verification_sent.html │ │ ├── administration │ │ ├── _alert.html │ │ ├── certificate-settings.html │ │ ├── course-material-admin.html │ │ ├── courses.html │ │ ├── lesson.html │ │ ├── permissions.html │ │ ├── profile-edit-admin.html │ │ ├── stats.html │ │ └── users.html │ │ ├── base.html │ │ ├── base_clean.html │ │ ├── certificate.html │ │ ├── certificate_print.html │ │ ├── class_edit.html │ │ ├── classes.html │ │ ├── core │ │ └── class_form.html │ │ ├── course-evaluations.html │ │ ├── course-material.html │ │ ├── course-notes.html │ │ ├── course.html │ │ ├── courses.html │ │ ├── dashboard.html │ │ ├── empty.html │ │ ├── evaluations.html │ │ ├── flatpages │ │ └── default.html │ │ ├── footer.html │ │ ├── forum.html │ │ ├── header.html │ │ ├── home.html │ │ ├── ifs │ │ └── signup-completion.html │ │ ├── lesson.html │ │ ├── message.html │ │ ├── messages.html │ │ ├── notes.html │ │ ├── profile-edit.html │ │ ├── profile.html │ │ ├── question-create.html │ │ ├── question.html │ │ ├── socialaccount │ │ ├── authentication_error.html │ │ ├── login_cancelled.html │ │ └── signup.html │ │ └── user-courses.html ├── if │ ├── static │ │ ├── css │ │ │ ├── less │ │ │ │ ├── components │ │ │ │ │ ├── actions-menu.less │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── contenteditable.less │ │ │ │ │ ├── course-box.less │ │ │ │ │ ├── course-nav.less │ │ │ │ │ ├── filters.less │ │ │ │ │ ├── footer.less │ │ │ │ │ ├── headers.less │ │ │ │ │ ├── modal.less │ │ │ │ │ ├── navbar.less │ │ │ │ │ └── navs.less │ │ │ │ ├── modules │ │ │ │ │ ├── mixins.less │ │ │ │ │ └── settings.less │ │ │ │ └── pages │ │ │ │ │ ├── admin.less │ │ │ │ │ ├── course-activity.less │ │ │ │ │ ├── course-content.less │ │ │ │ │ ├── courses.less │ │ │ │ │ ├── forum.less │ │ │ │ │ ├── home.less │ │ │ │ │ ├── messages.less │ │ │ │ │ ├── my-notes.less │ │ │ │ │ ├── registration.less │ │ │ │ │ └── stats.less │ │ │ └── main.less │ │ ├── fonts │ │ │ ├── jelly │ │ │ │ ├── jelly-webfont.eot │ │ │ │ ├── jelly-webfont.svg │ │ │ │ ├── jelly-webfont.ttf │ │ │ │ ├── jelly-webfont.woff │ │ │ │ ├── jelly-webfont.woff2 │ │ │ │ └── stylesheet.css │ │ │ └── pt-sans │ │ │ │ ├── PTS75F-webfont.eot │ │ │ │ ├── PTS75F-webfont.svg │ │ │ │ ├── PTS75F-webfont.ttf │ │ │ │ ├── PTS75F-webfont.woff │ │ │ │ └── stylesheet.css │ │ └── img │ │ │ ├── banner-home.png │ │ │ ├── bg.png │ │ │ ├── ilustra-home-bg.png │ │ │ └── logo.png │ └── templates │ │ ├── _contact_form.html │ │ ├── _highlight.html │ │ ├── _modal_about.html │ │ ├── account │ │ ├── email │ │ │ ├── email_confirmation_message.txt │ │ │ └── email_confirmation_subject.txt │ │ ├── login_modal.html │ │ └── signup.html │ │ └── header.html ├── ifs-colors │ ├── static │ │ ├── fonts │ │ │ ├── coprgtl.ttf │ │ │ └── ek-mukta │ │ │ │ ├── extra-light │ │ │ │ ├── EkMukta-ExtraLight-webfont.eot │ │ │ │ ├── EkMukta-ExtraLight-webfont.svg │ │ │ │ ├── EkMukta-ExtraLight-webfont.ttf │ │ │ │ ├── EkMukta-ExtraLight-webfont.woff │ │ │ │ └── EkMukta-ExtraLight-webfont.woff2 │ │ │ │ └── regular │ │ │ │ ├── EkMukta-Regular-webfont.eot │ │ │ │ ├── EkMukta-Regular-webfont.svg │ │ │ │ ├── EkMukta-Regular-webfont.ttf │ │ │ │ ├── EkMukta-Regular-webfont.woff │ │ │ │ └── EkMukta-Regular-webfont.woff2 │ │ ├── img │ │ │ ├── banner-home.jpg │ │ │ ├── bg.png │ │ │ ├── certificatebg-light.png │ │ │ ├── certificatebg.svg │ │ │ ├── colors-header.png │ │ │ ├── ico-courses-page-01.png │ │ │ ├── ico-courses-page-02.png │ │ │ ├── ico-courses-page-03.png │ │ │ ├── ico-courses-page-04.png │ │ │ ├── ico-home-01.png │ │ │ ├── ico-home-02.png │ │ │ ├── ico-home-03.png │ │ │ ├── ifs-receipt-bg.png │ │ │ ├── logo.png │ │ │ ├── logobrasil.svg │ │ │ └── logopronatec.svg │ │ └── less │ │ │ ├── ifs-colors │ │ │ ├── components │ │ │ │ ├── actions-menu.less │ │ │ │ ├── alerts.less │ │ │ │ ├── contenteditable.less │ │ │ │ ├── course-box.less │ │ │ │ ├── course-nav.less │ │ │ │ ├── filters.less │ │ │ │ ├── footer.less │ │ │ │ ├── headers.less │ │ │ │ ├── modal.less │ │ │ │ └── navbar.less │ │ │ ├── modules │ │ │ │ ├── mixins.less │ │ │ │ └── settings.less │ │ │ └── pages │ │ │ │ ├── admin.less │ │ │ │ ├── certificate.less │ │ │ │ ├── course-activity.less │ │ │ │ ├── course-content.less │ │ │ │ ├── courses.less │ │ │ │ ├── forum.less │ │ │ │ ├── home.less │ │ │ │ ├── messages.less │ │ │ │ ├── my-notes.less │ │ │ │ ├── profile.less │ │ │ │ ├── registration.less │ │ │ │ └── stats.less │ │ │ └── main-ifs-colors.less │ └── templates │ │ ├── _certificate-certificate.html │ │ ├── _contact_form.html │ │ ├── _highlight.html │ │ ├── _modal_about.html │ │ ├── account │ │ ├── base.html │ │ ├── email │ │ │ ├── email_confirmation_message.txt │ │ │ └── email_confirmation_subject.txt │ │ ├── login_modal.html │ │ └── signup-ifsul.html │ │ ├── administration │ │ ├── certificate-settings.html │ │ ├── courses.html │ │ └── users.html │ │ ├── course.html │ │ ├── courses.html │ │ ├── flatpages │ │ └── default.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── ifs │ │ └── signup-completion.html │ │ ├── lesson.html │ │ ├── notes.html │ │ ├── profile-edit.html │ │ ├── profile.html │ │ └── user-courses.html ├── paralapraca │ ├── static │ │ ├── css │ │ │ ├── less │ │ │ │ ├── components │ │ │ │ │ ├── actions-menu.less │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── contenteditable.less │ │ │ │ │ ├── course-box.less │ │ │ │ │ ├── course-nav.less │ │ │ │ │ ├── filters.less │ │ │ │ │ ├── footer.less │ │ │ │ │ ├── headers.less │ │ │ │ │ ├── modal.less │ │ │ │ │ └── navbar.less │ │ │ │ ├── modules │ │ │ │ │ ├── mixins.less │ │ │ │ │ └── settings.less │ │ │ │ └── pages │ │ │ │ │ ├── admin.less │ │ │ │ │ ├── certificate.less │ │ │ │ │ ├── course-activity.less │ │ │ │ │ ├── course-content.less │ │ │ │ │ ├── courses.less │ │ │ │ │ ├── forum.less │ │ │ │ │ ├── home.less │ │ │ │ │ ├── messages.less │ │ │ │ │ ├── my-notes.less │ │ │ │ │ ├── profile.less │ │ │ │ │ ├── registration.less │ │ │ │ │ └── stats.less │ │ │ └── main.less │ │ ├── fonts │ │ │ ├── cordelencarnado-webfont.ttf │ │ │ ├── cordelencarnado-webfont.woff │ │ │ ├── robotoslab-bold-webfont.ttf │ │ │ ├── robotoslab-bold-webfont.woff │ │ │ ├── robotoslab-regular-webfont.ttf │ │ │ └── robotoslab-regular-webfont.woff │ │ └── img │ │ │ ├── bichos.png │ │ │ ├── colors-header.png │ │ │ ├── header-background.png │ │ │ ├── lesson-frame.svg │ │ │ ├── logo-footer.png │ │ │ └── logo.svg │ └── templates │ │ ├── _certificate-certificate.html │ │ ├── _contact_form.html │ │ ├── _course-header-inline.html │ │ ├── _forum_inline.html │ │ ├── _highlight.html │ │ ├── _lesson_header.html │ │ ├── _modal_about.html │ │ ├── _modal_course_complete.html │ │ ├── account │ │ ├── base.html │ │ ├── email │ │ │ ├── email_confirmation_message.txt │ │ │ └── email_confirmation_subject.txt │ │ ├── login_modal.html │ │ └── signup-ifsul.html │ │ ├── administration │ │ ├── certificate-settings.html │ │ ├── courses.html │ │ └── users.html │ │ ├── course-notes.html │ │ ├── course.html │ │ ├── courses.html │ │ ├── flatpages │ │ └── default.html │ │ ├── footer.html │ │ ├── forum.html │ │ ├── header.html │ │ ├── header_plpc.html │ │ ├── home.html │ │ ├── ifs │ │ └── signup-completion.html │ │ ├── lesson.html │ │ ├── notes.html │ │ ├── profile-edit.html │ │ ├── profile.html │ │ ├── question-create.html │ │ ├── question.html │ │ └── user-courses.html └── timtec │ ├── static │ ├── fonts │ │ └── teuton │ │ │ ├── teuton24pro-webfont.eot │ │ │ ├── teuton24pro-webfont.svg │ │ │ ├── teuton24pro-webfont.ttf │ │ │ ├── teuton24pro-webfont.woff │ │ │ ├── teuton25pro-webfont.eot │ │ │ ├── teuton25pro-webfont.svg │ │ │ ├── teuton25pro-webfont.ttf │ │ │ ├── teuton25pro-webfont.woff │ │ │ ├── teuton26pro-webfont.eot │ │ │ ├── teuton26pro-webfont.svg │ │ │ ├── teuton26pro-webfont.ttf │ │ │ └── teuton26pro-webfont.woff │ ├── img │ │ ├── arrows.png │ │ ├── bg-barra-twitter.png │ │ ├── bg.jpg │ │ ├── home-illust.png │ │ ├── icon-contact.png │ │ ├── illustrations │ │ │ ├── course-intro-l.png │ │ │ ├── course-intro-m.png │ │ │ ├── course-lesson-l.png │ │ │ ├── course-lesson-m.png │ │ │ ├── courses-list-l.png │ │ │ ├── courses-list-m.png │ │ │ ├── home-l.png │ │ │ ├── home-m.png │ │ │ ├── instituto-container-l.png │ │ │ ├── instituto-container-m.png │ │ │ ├── instituto-l.png │ │ │ ├── instituto-m.png │ │ │ ├── timtec-l.png │ │ │ └── timtec-m.png │ │ ├── logo-instituto-tim.png │ │ └── logo-timtec.png │ └── less │ │ ├── main-timtec.less │ │ └── timtec │ │ ├── actions-menu.less │ │ ├── admin.less │ │ ├── alerts.less │ │ ├── buttons.less │ │ ├── certificate.less │ │ ├── classes.less │ │ ├── contenteditable.less │ │ ├── course-box.less │ │ ├── course-content.less │ │ ├── course-nav.less │ │ ├── courses.less │ │ ├── flatpage.less │ │ ├── footer.less │ │ ├── forum.less │ │ ├── headers.less │ │ ├── home.less │ │ ├── login-modal.less │ │ ├── messages.less │ │ ├── my-courses.less │ │ ├── my-notes.less │ │ ├── navbar.less │ │ ├── new-timtec.less │ │ ├── profile.less │ │ ├── registration.less │ │ ├── settings.less │ │ ├── stats.less │ │ └── users.less │ └── templates │ ├── _admin_header_inline.html │ ├── _certificate-receipt.html │ ├── _courses_aside.html │ ├── _highlight.html │ ├── _lesson_header.html │ ├── administration │ └── certificate-settings.html │ ├── header.html │ ├── home.html │ └── user-courses.html └── timtec ├── __init__.py ├── context_processor.py ├── ngmincombo.py ├── settings.py ├── settings_local.py.template ├── settings_local.py.template_dev ├── settings_local_ci.py ├── settings_local_demo.py ├── settings_local_design.py ├── settings_local_dev.py ├── settings_local_docker.py ├── settings_local_ifsul.py ├── settings_local_production.py ├── settings_local_staging.py ├── settings_local_test.py ├── settings_local_timtec_dev.py ├── urls.py └── wsgi.py /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/.gitignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/Makefile -------------------------------------------------------------------------------- /README-DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/README-DOCS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/Vagrantfile -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/adapter.py -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/forms.py -------------------------------------------------------------------------------- /accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /accounts/migrations/0002_auto_20160224_0053.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/migrations/0002_auto_20160224_0053.py -------------------------------------------------------------------------------- /accounts/migrations/0003_timtecuser_cpf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/migrations/0003_timtecuser_cpf.py -------------------------------------------------------------------------------- /accounts/migrations/0004_auto_20180203_0020.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/migrations/0004_auto_20180203_0020.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/serializers.py -------------------------------------------------------------------------------- /accounts/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/tests/test_acceptance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/tests/test_acceptance.py -------------------------------------------------------------------------------- /accounts/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/tests/test_forms.py -------------------------------------------------------------------------------- /accounts/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/tests/test_models.py -------------------------------------------------------------------------------- /accounts/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/tests/test_views.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/accounts/views.py -------------------------------------------------------------------------------- /activities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/__init__.py -------------------------------------------------------------------------------- /activities/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/admin.py -------------------------------------------------------------------------------- /activities/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/apps.py -------------------------------------------------------------------------------- /activities/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/migrations/0001_initial.py -------------------------------------------------------------------------------- /activities/migrations/0002_activity_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/migrations/0002_activity_image.py -------------------------------------------------------------------------------- /activities/migrations/0003_auto_20160730_1743.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/migrations/0003_auto_20160730_1743.py -------------------------------------------------------------------------------- /activities/migrations/0004_auto_20160817_1837.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/migrations/0004_auto_20160817_1837.py -------------------------------------------------------------------------------- /activities/migrations/0005_auto_20161117_1152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/migrations/0005_auto_20161117_1152.py -------------------------------------------------------------------------------- /activities/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activities/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/models.py -------------------------------------------------------------------------------- /activities/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/serializers.py -------------------------------------------------------------------------------- /activities/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/signals.py -------------------------------------------------------------------------------- /activities/static/js/activities/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/js/activities/app.js -------------------------------------------------------------------------------- /activities/static/js/activities/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/js/activities/controllers.js -------------------------------------------------------------------------------- /activities/static/js/activities/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/js/activities/directives.js -------------------------------------------------------------------------------- /activities/static/js/activities/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/js/activities/services.js -------------------------------------------------------------------------------- /activities/static/templates/activity_discussion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/activity_discussion.html -------------------------------------------------------------------------------- /activities/static/templates/activity_html5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/activity_html5.html -------------------------------------------------------------------------------- /activities/static/templates/activity_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/activity_image.html -------------------------------------------------------------------------------- /activities/static/templates/activity_markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/activity_markdown.html -------------------------------------------------------------------------------- /activities/static/templates/activity_multiplechoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/activity_multiplechoice.html -------------------------------------------------------------------------------- /activities/static/templates/activity_php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/activity_php.html -------------------------------------------------------------------------------- /activities/static/templates/activity_presentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/activity_presentation.html -------------------------------------------------------------------------------- /activities/static/templates/activity_reading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/activity_reading.html -------------------------------------------------------------------------------- /activities/static/templates/activity_relationship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/activity_relationship.html -------------------------------------------------------------------------------- /activities/static/templates/activity_simplechoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/activity_simplechoice.html -------------------------------------------------------------------------------- /activities/static/templates/activity_slidesreveal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/activity_slidesreveal.html -------------------------------------------------------------------------------- /activities/static/templates/activity_trueorfalse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/activity_trueorfalse.html -------------------------------------------------------------------------------- /activities/static/templates/directives/basic_response_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/directives/basic_response_panel.html -------------------------------------------------------------------------------- /activities/static/templates/directives/slide_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/directives/slide_panel.html -------------------------------------------------------------------------------- /activities/static/templates/directives/slidesreveal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/static/templates/directives/slidesreveal.html -------------------------------------------------------------------------------- /activities/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/activities/views.py -------------------------------------------------------------------------------- /administration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administration/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/serializer.py -------------------------------------------------------------------------------- /administration/static/app/admin.lesson.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/app/admin.lesson.app.js -------------------------------------------------------------------------------- /administration/static/app/controllers/admin.lesson.controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/app/controllers/admin.lesson.controllers.js -------------------------------------------------------------------------------- /administration/static/app/services/admin.lesson.services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/app/services/admin.lesson.services.js -------------------------------------------------------------------------------- /administration/static/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/admin.js -------------------------------------------------------------------------------- /administration/static/js/course-permissions/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/course-permissions/app.js -------------------------------------------------------------------------------- /administration/static/js/course-permissions/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/course-permissions/controllers.js -------------------------------------------------------------------------------- /administration/static/js/course-permissions/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/course-permissions/services.js -------------------------------------------------------------------------------- /administration/static/js/courses/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/courses/app.js -------------------------------------------------------------------------------- /administration/static/js/courses/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/courses/controllers.js -------------------------------------------------------------------------------- /administration/static/js/courses/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/courses/filters.js -------------------------------------------------------------------------------- /administration/static/js/directives/alertPopup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/directives/alertPopup.js -------------------------------------------------------------------------------- /administration/static/js/directives/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/directives/codemirror.js -------------------------------------------------------------------------------- /administration/static/js/directives/contenteditable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/directives/contenteditable.js -------------------------------------------------------------------------------- /administration/static/js/directives/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/directives/file.js -------------------------------------------------------------------------------- /administration/static/js/directives/fixedBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/directives/fixedBar.js -------------------------------------------------------------------------------- /administration/static/js/directives/markdowneditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/directives/markdowneditor.js -------------------------------------------------------------------------------- /administration/static/js/directives/previewImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/directives/previewImage.js -------------------------------------------------------------------------------- /administration/static/js/directives/sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/directives/sortable.js -------------------------------------------------------------------------------- /administration/static/js/directives/waiting-screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/directives/waiting-screen.js -------------------------------------------------------------------------------- /administration/static/js/edit-class/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/edit-class/app.js -------------------------------------------------------------------------------- /administration/static/js/edit-class/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/edit-class/controllers.js -------------------------------------------------------------------------------- /administration/static/js/edit-class/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/edit-class/services.js -------------------------------------------------------------------------------- /administration/static/js/factories/timtec-models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/factories/timtec-models.js -------------------------------------------------------------------------------- /administration/static/js/filters/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/filters/he.js -------------------------------------------------------------------------------- /administration/static/js/filters/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/filters/text.js -------------------------------------------------------------------------------- /administration/static/js/messages/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/messages/app.js -------------------------------------------------------------------------------- /administration/static/js/messages/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/messages/controllers.js -------------------------------------------------------------------------------- /administration/static/js/messages/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/messages/services.js -------------------------------------------------------------------------------- /administration/static/js/new-course/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/new-course/app.js -------------------------------------------------------------------------------- /administration/static/js/new-course/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/new-course/controllers.js -------------------------------------------------------------------------------- /administration/static/js/new-course/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/new-course/directives.js -------------------------------------------------------------------------------- /administration/static/js/profile-admin/profile.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/profile-admin/profile.app.js -------------------------------------------------------------------------------- /administration/static/js/profile-admin/profile.controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/profile-admin/profile.controllers.js -------------------------------------------------------------------------------- /administration/static/js/profile-admin/profile.services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/profile-admin/profile.services.js -------------------------------------------------------------------------------- /administration/static/js/users-admin/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/users-admin/app.js -------------------------------------------------------------------------------- /administration/static/js/users-admin/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/users-admin/controllers.js -------------------------------------------------------------------------------- /administration/static/js/users-admin/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/js/users-admin/services.js -------------------------------------------------------------------------------- /administration/static/templates/activities/activity_html5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/templates/activities/activity_html5.html -------------------------------------------------------------------------------- /administration/static/templates/activities/activity_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/templates/activities/activity_image.html -------------------------------------------------------------------------------- /administration/static/templates/activities/activity_markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/templates/activities/activity_markdown.html -------------------------------------------------------------------------------- /administration/static/templates/activities/activity_reading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/templates/activities/activity_reading.html -------------------------------------------------------------------------------- /administration/static/templates/directive.codemirror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/templates/directive.codemirror.html -------------------------------------------------------------------------------- /administration/static/templates/directive.markdowneditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/templates/directive.markdowneditor.html -------------------------------------------------------------------------------- /administration/static/templates/directive.modalmarkdowneditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/static/templates/directive.modalmarkdowneditor.html -------------------------------------------------------------------------------- /administration/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administration/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/tests/test_views.py -------------------------------------------------------------------------------- /administration/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/urls.py -------------------------------------------------------------------------------- /administration/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/administration/views.py -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/bower.json -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/conftest.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/context_processors.py -------------------------------------------------------------------------------- /core/fixtures/initial-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/fixtures/initial-dev.json -------------------------------------------------------------------------------- /core/fixtures/initial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/fixtures/initial.json -------------------------------------------------------------------------------- /core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/forms.py -------------------------------------------------------------------------------- /core/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/loaders.py -------------------------------------------------------------------------------- /core/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/management/commands/create_student_and_professor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/management/commands/create_student_and_professor.py -------------------------------------------------------------------------------- /core/management/commands/delete_studentdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/management/commands/delete_studentdata.py -------------------------------------------------------------------------------- /core/management/commands/enroll_all_users_in_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/management/commands/enroll_all_users_in_classes.py -------------------------------------------------------------------------------- /core/management/commands/export_all_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/management/commands/export_all_users.py -------------------------------------------------------------------------------- /core/management/commands/find_by_city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/management/commands/find_by_city.py -------------------------------------------------------------------------------- /core/management/commands/generate_initial_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/management/commands/generate_initial_data.py -------------------------------------------------------------------------------- /core/management/commands/import_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/management/commands/import_users.py -------------------------------------------------------------------------------- /core/management/commands/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/management/commands/report.py -------------------------------------------------------------------------------- /core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /core/migrations/0002_auto_20150904_1738.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0002_auto_20150904_1738.py -------------------------------------------------------------------------------- /core/migrations/0003_auto_20151003_2000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0003_auto_20151003_2000.py -------------------------------------------------------------------------------- /core/migrations/0004_auto_20151104_0157.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0004_auto_20151104_0157.py -------------------------------------------------------------------------------- /core/migrations/0005_auto_20151104_0455.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0005_auto_20151104_0455.py -------------------------------------------------------------------------------- /core/migrations/0006_coursecertification_course.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0006_coursecertification_course.py -------------------------------------------------------------------------------- /core/migrations/0007_auto_20151202_1434.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0007_auto_20151202_1434.py -------------------------------------------------------------------------------- /core/migrations/0008_auto_20151203_1519.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0008_auto_20151203_1519.py -------------------------------------------------------------------------------- /core/migrations/0009_remove_coursecertification_course.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0009_remove_coursecertification_course.py -------------------------------------------------------------------------------- /core/migrations/0010_auto_20160131_1543.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0010_auto_20160131_1543.py -------------------------------------------------------------------------------- /core/migrations/0011_auto_20160131_1558.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0011_auto_20160131_1558.py -------------------------------------------------------------------------------- /core/migrations/0012_auto_20160131_1643.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0012_auto_20160131_1643.py -------------------------------------------------------------------------------- /core/migrations/0013_auto_20160315_0215.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0013_auto_20160315_0215.py -------------------------------------------------------------------------------- /core/migrations/0014_auto_20160317_2130.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0014_auto_20160317_2130.py -------------------------------------------------------------------------------- /core/migrations/0015_auto_20160406_0152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0015_auto_20160406_0152.py -------------------------------------------------------------------------------- /core/migrations/0016_course_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0016_course_groups.py -------------------------------------------------------------------------------- /core/migrations/0017_auto_20161014_2107.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0017_auto_20161014_2107.py -------------------------------------------------------------------------------- /core/migrations/0017_coursestudent_start_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0017_coursestudent_start_date.py -------------------------------------------------------------------------------- /core/migrations/0018_auto_20161014_2116.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0018_auto_20161014_2116.py -------------------------------------------------------------------------------- /core/migrations/0019_auto_20161014_2116.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0019_auto_20161014_2116.py -------------------------------------------------------------------------------- /core/migrations/0020_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0020_merge.py -------------------------------------------------------------------------------- /core/migrations/0021_class_assistants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0021_class_assistants.py -------------------------------------------------------------------------------- /core/migrations/0022_auto_20161125_1116.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0022_auto_20161125_1116.py -------------------------------------------------------------------------------- /core/migrations/0023_remove_class_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0023_remove_class_assistant.py -------------------------------------------------------------------------------- /core/migrations/0024_certificatetemplate_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0024_certificatetemplate_signature.py -------------------------------------------------------------------------------- /core/migrations/0025_auto_20170116_1405.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0025_auto_20170116_1405.py -------------------------------------------------------------------------------- /core/migrations/0026_auto_20170120_1829.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0026_auto_20170120_1829.py -------------------------------------------------------------------------------- /core/migrations/0027_auto_20170125_1147.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0027_auto_20170125_1147.py -------------------------------------------------------------------------------- /core/migrations/0028_auto_20171226_1217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/migrations/0028_auto_20171226_1217.py -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/models.py -------------------------------------------------------------------------------- /core/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/permissions.py -------------------------------------------------------------------------------- /core/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/serializers.py -------------------------------------------------------------------------------- /core/static/js/certificate/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/certificate/app.js -------------------------------------------------------------------------------- /core/static/js/certificate/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/certificate/controllers.js -------------------------------------------------------------------------------- /core/static/js/certificate/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/certificate/filters.js -------------------------------------------------------------------------------- /core/static/js/certificate/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/certificate/services.js -------------------------------------------------------------------------------- /core/static/js/consolelogfallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/consolelogfallback.js -------------------------------------------------------------------------------- /core/static/js/core-services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/core-services.js -------------------------------------------------------------------------------- /core/static/js/core/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/core/app.js -------------------------------------------------------------------------------- /core/static/js/core/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/core/controllers.js -------------------------------------------------------------------------------- /core/static/js/core/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/core/filters.js -------------------------------------------------------------------------------- /core/static/js/core/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/core/services.js -------------------------------------------------------------------------------- /core/static/js/dashboard/dashboard-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/dashboard/dashboard-app.js -------------------------------------------------------------------------------- /core/static/js/dashboard/dashboard-controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/dashboard/dashboard-controllers.js -------------------------------------------------------------------------------- /core/static/js/directives/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/directives/layout.js -------------------------------------------------------------------------------- /core/static/js/django.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/django.js -------------------------------------------------------------------------------- /core/static/js/lesson/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/lesson/app.js -------------------------------------------------------------------------------- /core/static/js/lesson/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/lesson/controllers.js -------------------------------------------------------------------------------- /core/static/js/lesson/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/lesson/directives.js -------------------------------------------------------------------------------- /core/static/js/lesson/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/lesson/services.js -------------------------------------------------------------------------------- /core/static/js/my-courses/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/my-courses/app.js -------------------------------------------------------------------------------- /core/static/js/my-courses/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/my-courses/controllers.js -------------------------------------------------------------------------------- /core/static/js/my-courses/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/my-courses/filters.js -------------------------------------------------------------------------------- /core/static/js/my-courses/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/my-courses/services.js -------------------------------------------------------------------------------- /core/static/js/profile/profile.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/profile/profile.app.js -------------------------------------------------------------------------------- /core/static/js/profile/profile.controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/profile/profile.controllers.js -------------------------------------------------------------------------------- /core/static/js/profile/profile.services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/profile/profile.services.js -------------------------------------------------------------------------------- /core/static/js/ui.tinymce.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/js/ui.tinymce.config.js -------------------------------------------------------------------------------- /core/static/templates/lesson_activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/templates/lesson_activity.html -------------------------------------------------------------------------------- /core/static/templates/lesson_video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/templates/lesson_video.html -------------------------------------------------------------------------------- /core/static/templates/livechat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/static/templates/livechat.html -------------------------------------------------------------------------------- /core/templates/djangular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/templates/djangular.js -------------------------------------------------------------------------------- /core/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/templatetags/append_to_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/templatetags/append_to_get.py -------------------------------------------------------------------------------- /core/templatetags/get_current_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/templatetags/get_current_class.py -------------------------------------------------------------------------------- /core/templatetags/get_flatpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/templatetags/get_flatpage.py -------------------------------------------------------------------------------- /core/templatetags/in_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/templatetags/in_group.py -------------------------------------------------------------------------------- /core/templatetags/is_assistant_or_coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/templatetags/is_assistant_or_coordinator.py -------------------------------------------------------------------------------- /core/templatetags/is_coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/templatetags/is_coordinator.py -------------------------------------------------------------------------------- /core/templatetags/is_course_coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/templatetags/is_course_coordinator.py -------------------------------------------------------------------------------- /core/templatetags/is_enrolled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/templatetags/is_enrolled.py -------------------------------------------------------------------------------- /core/templatetags/timtec_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/templatetags/timtec_markdown.py -------------------------------------------------------------------------------- /core/templatetags/usergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/templatetags/usergroup.py -------------------------------------------------------------------------------- /core/tests/test_acceptance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/tests/test_acceptance.py -------------------------------------------------------------------------------- /core/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/tests/test_models.py -------------------------------------------------------------------------------- /core/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/tests/test_views.py -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/utils.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/core/views.py -------------------------------------------------------------------------------- /course_material/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /course_material/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/course_material/admin.py -------------------------------------------------------------------------------- /course_material/fixtures/dev_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/course_material/fixtures/dev_data.json -------------------------------------------------------------------------------- /course_material/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/course_material/forms.py -------------------------------------------------------------------------------- /course_material/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/course_material/migrations/0001_initial.py -------------------------------------------------------------------------------- /course_material/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /course_material/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/course_material/models.py -------------------------------------------------------------------------------- /course_material/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/course_material/serializers.py -------------------------------------------------------------------------------- /course_material/static/js/course_material/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/course_material/static/js/course_material/app.js -------------------------------------------------------------------------------- /course_material/static/js/course_material/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/course_material/static/js/course_material/controllers.js -------------------------------------------------------------------------------- /course_material/static/js/course_material/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/course_material/static/js/course_material/directives.js -------------------------------------------------------------------------------- /course_material/static/js/course_material/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/course_material/static/js/course_material/filters.js -------------------------------------------------------------------------------- /course_material/static/js/course_material/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/course_material/static/js/course_material/services.js -------------------------------------------------------------------------------- /course_material/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /course_material/tests/dummy_file.txt: -------------------------------------------------------------------------------- 1 | Dumy file -------------------------------------------------------------------------------- /course_material/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/course_material/tests/test_views.py -------------------------------------------------------------------------------- /course_material/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/course_material/views.py -------------------------------------------------------------------------------- /docker/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docker/nginx.conf -------------------------------------------------------------------------------- /docker/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docker/supervisord.conf -------------------------------------------------------------------------------- /docs/Instalação.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/Instalação.srt -------------------------------------------------------------------------------- /docs/Papeis-de-Usuários.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/Papeis-de-Usuários.md -------------------------------------------------------------------------------- /docs/_static/css/timtec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/css/timtec.css -------------------------------------------------------------------------------- /docs/_static/img/Octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/Octocat.png -------------------------------------------------------------------------------- /docs/_static/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/background.png -------------------------------------------------------------------------------- /docs/_static/img/cabecafundo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/cabecafundo.png -------------------------------------------------------------------------------- /docs/_static/img/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/dev.png -------------------------------------------------------------------------------- /docs/_static/img/docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/docs.png -------------------------------------------------------------------------------- /docs/_static/img/icons/g35724.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/icons/g35724.png -------------------------------------------------------------------------------- /docs/_static/img/icons/g35766.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/icons/g35766.png -------------------------------------------------------------------------------- /docs/_static/img/icons/g36532.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/icons/g36532.png -------------------------------------------------------------------------------- /docs/_static/img/icons/path36494.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/icons/path36494.png -------------------------------------------------------------------------------- /docs/_static/img/icons/path36514.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/icons/path36514.png -------------------------------------------------------------------------------- /docs/_static/img/icons/path36796.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/icons/path36796.png -------------------------------------------------------------------------------- /docs/_static/img/instituto-tim-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/instituto-tim-white.png -------------------------------------------------------------------------------- /docs/_static/img/logo-timtec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/logo-timtec.png -------------------------------------------------------------------------------- /docs/_static/img/software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/img/software.png -------------------------------------------------------------------------------- /docs/_static/professor/addaula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/addaula.png -------------------------------------------------------------------------------- /docs/_static/professor/addaulas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/addaulas.png -------------------------------------------------------------------------------- /docs/_static/professor/addturma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/addturma.png -------------------------------------------------------------------------------- /docs/_static/professor/addturma2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/addturma2.png -------------------------------------------------------------------------------- /docs/_static/professor/administracao1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/administracao1.png -------------------------------------------------------------------------------- /docs/_static/professor/apagar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/apagar.png -------------------------------------------------------------------------------- /docs/_static/professor/atividades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/atividades.png -------------------------------------------------------------------------------- /docs/_static/professor/aulastatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/aulastatus.png -------------------------------------------------------------------------------- /docs/_static/professor/botaoorganizaraulas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/botaoorganizaraulas.png -------------------------------------------------------------------------------- /docs/_static/professor/camposcurso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/camposcurso.jpg -------------------------------------------------------------------------------- /docs/_static/professor/camposcursoN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/camposcursoN.png -------------------------------------------------------------------------------- /docs/_static/professor/cursosdahome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/cursosdahome.png -------------------------------------------------------------------------------- /docs/_static/professor/datainicio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/datainicio.png -------------------------------------------------------------------------------- /docs/_static/professor/duvidas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/duvidas.png -------------------------------------------------------------------------------- /docs/_static/professor/duvidas1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/duvidas1.png -------------------------------------------------------------------------------- /docs/_static/professor/editaratividade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/editaratividade.png -------------------------------------------------------------------------------- /docs/_static/professor/editarhome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/editarhome.png -------------------------------------------------------------------------------- /docs/_static/professor/editarhome2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/editarhome2.png -------------------------------------------------------------------------------- /docs/_static/professor/editarhome3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/editarhome3.png -------------------------------------------------------------------------------- /docs/_static/professor/escolhasimples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/escolhasimples.png -------------------------------------------------------------------------------- /docs/_static/professor/estruturacurso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/estruturacurso.png -------------------------------------------------------------------------------- /docs/_static/professor/exportar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/exportar.png -------------------------------------------------------------------------------- /docs/_static/professor/ferramentas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/ferramentas.png -------------------------------------------------------------------------------- /docs/_static/professor/ferramentasCursos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/ferramentasCursos.png -------------------------------------------------------------------------------- /docs/_static/professor/forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/forum.png -------------------------------------------------------------------------------- /docs/_static/professor/forumexemplo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/forumexemplo.png -------------------------------------------------------------------------------- /docs/_static/professor/html5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/html5.png -------------------------------------------------------------------------------- /docs/_static/professor/importar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/importar.png -------------------------------------------------------------------------------- /docs/_static/professor/instrutores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/instrutores.png -------------------------------------------------------------------------------- /docs/_static/professor/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/login.png -------------------------------------------------------------------------------- /docs/_static/professor/materiaisadicionais.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/materiaisadicionais.png -------------------------------------------------------------------------------- /docs/_static/professor/materiaisadicionaisedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/materiaisadicionaisedit.png -------------------------------------------------------------------------------- /docs/_static/professor/mensagens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/mensagens.png -------------------------------------------------------------------------------- /docs/_static/professor/mensagens2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/mensagens2.png -------------------------------------------------------------------------------- /docs/_static/professor/menuaulas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/menuaulas.png -------------------------------------------------------------------------------- /docs/_static/professor/meuscursos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/meuscursos.png -------------------------------------------------------------------------------- /docs/_static/professor/meuscursos2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/meuscursos2.png -------------------------------------------------------------------------------- /docs/_static/professor/meuscursos3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/meuscursos3.png -------------------------------------------------------------------------------- /docs/_static/professor/multiplaescolha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/multiplaescolha.png -------------------------------------------------------------------------------- /docs/_static/professor/novaunidade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/novaunidade.png -------------------------------------------------------------------------------- /docs/_static/professor/novaunidade2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/novaunidade2.png -------------------------------------------------------------------------------- /docs/_static/professor/novocurso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/novocurso.png -------------------------------------------------------------------------------- /docs/_static/professor/novocursoinicio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/novocursoinicio.png -------------------------------------------------------------------------------- /docs/_static/professor/organizaraulas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/organizaraulas.png -------------------------------------------------------------------------------- /docs/_static/professor/paginaaula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/paginaaula.png -------------------------------------------------------------------------------- /docs/_static/professor/paginaaulaN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/paginaaulaN.png -------------------------------------------------------------------------------- /docs/_static/professor/papeisprofs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/papeisprofs.png -------------------------------------------------------------------------------- /docs/_static/professor/permissaoprof2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/permissaoprof2.png -------------------------------------------------------------------------------- /docs/_static/professor/permissaoprof3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/permissaoprof3.png -------------------------------------------------------------------------------- /docs/_static/professor/permissoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/permissoes.png -------------------------------------------------------------------------------- /docs/_static/professor/permissoes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/permissoes2.png -------------------------------------------------------------------------------- /docs/_static/professor/permissoes3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/permissoes3.png -------------------------------------------------------------------------------- /docs/_static/professor/permissoes4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/permissoes4.png -------------------------------------------------------------------------------- /docs/_static/professor/permissoesprofs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/permissoesprofs.png -------------------------------------------------------------------------------- /docs/_static/professor/pqfazer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/pqfazer.png -------------------------------------------------------------------------------- /docs/_static/professor/precisosaber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/precisosaber.png -------------------------------------------------------------------------------- /docs/_static/professor/procuraruser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/procuraruser.png -------------------------------------------------------------------------------- /docs/_static/professor/progressonecessario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/progressonecessario.png -------------------------------------------------------------------------------- /docs/_static/professor/relacionarsentencas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/relacionarsentencas.png -------------------------------------------------------------------------------- /docs/_static/professor/relatorios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/relatorios.png -------------------------------------------------------------------------------- /docs/_static/professor/relatorios2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/relatorios2.png -------------------------------------------------------------------------------- /docs/_static/professor/relatorios3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/relatorios3.png -------------------------------------------------------------------------------- /docs/_static/professor/relatorios4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/relatorios4.png -------------------------------------------------------------------------------- /docs/_static/professor/removeratividade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/removeratividade.png -------------------------------------------------------------------------------- /docs/_static/professor/removeratividadecirculado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/removeratividadecirculado.png -------------------------------------------------------------------------------- /docs/_static/professor/removerunidade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/removerunidade.png -------------------------------------------------------------------------------- /docs/_static/professor/reordenaraulas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/reordenaraulas.png -------------------------------------------------------------------------------- /docs/_static/professor/resumo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/resumo.png -------------------------------------------------------------------------------- /docs/_static/professor/rodape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/rodape.png -------------------------------------------------------------------------------- /docs/_static/professor/sobre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/sobre.png -------------------------------------------------------------------------------- /docs/_static/professor/statusrascunho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/statusrascunho.png -------------------------------------------------------------------------------- /docs/_static/professor/textosimples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/textosimples.png -------------------------------------------------------------------------------- /docs/_static/professor/tipoatividades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/tipoatividades.png -------------------------------------------------------------------------------- /docs/_static/professor/tiposatividades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/tiposatividades.png -------------------------------------------------------------------------------- /docs/_static/professor/titulonovocurso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/titulonovocurso.png -------------------------------------------------------------------------------- /docs/_static/professor/trocarvideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/trocarvideo.png -------------------------------------------------------------------------------- /docs/_static/professor/turmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/turmas.png -------------------------------------------------------------------------------- /docs/_static/professor/unidadeinserirvideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/unidadeinserirvideo.png -------------------------------------------------------------------------------- /docs/_static/professor/verdadeirooufalso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/verdadeirooufalso.png -------------------------------------------------------------------------------- /docs/_static/professor/videothumbnailhome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_static/professor/videothumbnailhome.png -------------------------------------------------------------------------------- /docs/_templates/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_templates/breadcrumbs.html -------------------------------------------------------------------------------- /docs/_templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_templates/footer.html -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/_templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_templates/search.html -------------------------------------------------------------------------------- /docs/_templates/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_templates/searchbox.html -------------------------------------------------------------------------------- /docs/_templates/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/_templates/versions.html -------------------------------------------------------------------------------- /docs/desenvolvimento/Atividades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/desenvolvimento/Atividades.md -------------------------------------------------------------------------------- /docs/desenvolvimento/Criando-Ambiente-de-Desenvolvimento.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/desenvolvimento/Criando-Ambiente-de-Desenvolvimento.md -------------------------------------------------------------------------------- /docs/desenvolvimento/DjangoTools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/desenvolvimento/DjangoTools.md -------------------------------------------------------------------------------- /docs/desenvolvimento/Planorefatoracao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/desenvolvimento/Planorefatoracao.md -------------------------------------------------------------------------------- /docs/desenvolvimento/Temas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/desenvolvimento/Temas.md -------------------------------------------------------------------------------- /docs/desenvolvimento/Tutorial-para-criação-de-tema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/desenvolvimento/Tutorial-para-criação-de-tema.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | Index 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/instalacao_e_configuracao/Alterando-locale-para-pt_BR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/instalacao_e_configuracao/Alterando-locale-para-pt_BR.md -------------------------------------------------------------------------------- /docs/instalacao_e_configuracao/Atividades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/instalacao_e_configuracao/Atividades.md -------------------------------------------------------------------------------- /docs/instalacao_e_configuracao/Atualização.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/instalacao_e_configuracao/Atualização.md -------------------------------------------------------------------------------- /docs/instalacao_e_configuracao/Configurações.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/instalacao_e_configuracao/Configurações.md -------------------------------------------------------------------------------- /docs/instalacao_e_configuracao/DjangoTools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/instalacao_e_configuracao/DjangoTools.rst -------------------------------------------------------------------------------- /docs/instalacao_e_configuracao/Instalação.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/instalacao_e_configuracao/Instalação.md -------------------------------------------------------------------------------- /docs/instalacao_e_configuracao/Temas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/instalacao_e_configuracao/Temas.md -------------------------------------------------------------------------------- /docs/instalacao_e_configuracao/Tutorial-para-criação-de-tema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/instalacao_e_configuracao/Tutorial-para-criação-de-tema.md -------------------------------------------------------------------------------- /docs/manual_admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/manual_admin.rst -------------------------------------------------------------------------------- /docs/manual_dev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/manual_dev.rst -------------------------------------------------------------------------------- /docs/manual_professor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/manual_professor.rst -------------------------------------------------------------------------------- /docs/manual_professor/atividades.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/manual_professor/atividades.rst -------------------------------------------------------------------------------- /docs/manual_professor/aulas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/manual_professor/aulas.rst -------------------------------------------------------------------------------- /docs/manual_professor/cursos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/manual_professor/cursos.rst -------------------------------------------------------------------------------- /docs/manual_professor/duvidas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/manual_professor/duvidas.rst -------------------------------------------------------------------------------- /docs/manual_professor/estatisticas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/manual_professor/estatisticas.rst -------------------------------------------------------------------------------- /docs/manual_professor/materialadicional.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/manual_professor/materialadicional.rst -------------------------------------------------------------------------------- /docs/manual_professor/mensagens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/manual_professor/mensagens.rst -------------------------------------------------------------------------------- /docs/manual_professor/papeis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/manual_professor/papeis.rst -------------------------------------------------------------------------------- /docs/manual_professor/turmas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/manual_professor/turmas.rst -------------------------------------------------------------------------------- /docs/manual_professor/unidades.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/manual_professor/unidades.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /forum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/admin.py -------------------------------------------------------------------------------- /forum/fixtures/dev_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/fixtures/dev_data.json -------------------------------------------------------------------------------- /forum/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/forms.py -------------------------------------------------------------------------------- /forum/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/migrations/0001_initial.py -------------------------------------------------------------------------------- /forum/migrations/0002_auto_20151104_0455.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/migrations/0002_auto_20151104_0455.py -------------------------------------------------------------------------------- /forum/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/models.py -------------------------------------------------------------------------------- /forum/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/permissions.py -------------------------------------------------------------------------------- /forum/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/serializers.py -------------------------------------------------------------------------------- /forum/static/js/forum/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/static/js/forum/app.js -------------------------------------------------------------------------------- /forum/static/js/forum/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/static/js/forum/controllers.js -------------------------------------------------------------------------------- /forum/static/js/forum/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/static/js/forum/directives.js -------------------------------------------------------------------------------- /forum/static/js/forum/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/static/js/forum/filters.js -------------------------------------------------------------------------------- /forum/static/js/forum/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/static/js/forum/services.js -------------------------------------------------------------------------------- /forum/static/js/truncate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/static/js/truncate.js -------------------------------------------------------------------------------- /forum/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum/tests/js/test-controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/tests/js/test-controllers.js -------------------------------------------------------------------------------- /forum/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/tests/test_forms.py -------------------------------------------------------------------------------- /forum/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/tests/test_views.py -------------------------------------------------------------------------------- /forum/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/forum/views.py -------------------------------------------------------------------------------- /ifs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ifs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/ifs/admin.py -------------------------------------------------------------------------------- /ifs/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/ifs/forms.py -------------------------------------------------------------------------------- /ifs/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/ifs/migrations/0001_initial.py -------------------------------------------------------------------------------- /ifs/migrations/0002_auto_20160411_1821.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/ifs/migrations/0002_auto_20160411_1821.py -------------------------------------------------------------------------------- /ifs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ifs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/ifs/models.py -------------------------------------------------------------------------------- /ifs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/ifs/urls.py -------------------------------------------------------------------------------- /ifs/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/ifs/view.py -------------------------------------------------------------------------------- /jshint.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/jshint.conf -------------------------------------------------------------------------------- /locale/angular.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/locale/angular.pot -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/manage.py -------------------------------------------------------------------------------- /media/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /notes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notes/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/notes/admin.py -------------------------------------------------------------------------------- /notes/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/notes/migrations/0001_initial.py -------------------------------------------------------------------------------- /notes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/notes/models.py -------------------------------------------------------------------------------- /notes/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/notes/serializers.py -------------------------------------------------------------------------------- /notes/static/js/notes/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/notes/static/js/notes/app.js -------------------------------------------------------------------------------- /notes/static/js/notes/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/notes/static/js/notes/controllers.js -------------------------------------------------------------------------------- /notes/static/js/notes/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/notes/static/js/notes/services.js -------------------------------------------------------------------------------- /notes/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/notes/views.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/package.json -------------------------------------------------------------------------------- /reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/reports/serializer.py -------------------------------------------------------------------------------- /reports/static/js/reports/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/reports/static/js/reports/app.js -------------------------------------------------------------------------------- /reports/static/js/reports/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/reports/static/js/reports/controllers.js -------------------------------------------------------------------------------- /reports/static/js/reports/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/reports/static/js/reports/services.js -------------------------------------------------------------------------------- /reports/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/reports/views.py -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/requirements/local.txt -------------------------------------------------------------------------------- /requirements/paralapraca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/requirements/paralapraca.txt -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/requirements/production.txt -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /scripts/bootstrap-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/scripts/bootstrap-ubuntu.sh -------------------------------------------------------------------------------- /scripts/conf/nginx-timtec-production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/scripts/conf/nginx-timtec-production -------------------------------------------------------------------------------- /scripts/conf/timtec-production.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/scripts/conf/timtec-production.ini -------------------------------------------------------------------------------- /scripts/env-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/scripts/env-setup.sh -------------------------------------------------------------------------------- /scripts/production-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/scripts/production-ubuntu.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/setup.py -------------------------------------------------------------------------------- /simplecors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/simplecors.py -------------------------------------------------------------------------------- /static/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/test_collectstatic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/tests/test_collectstatic.py -------------------------------------------------------------------------------- /tests/test_fullstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/tests/test_fullstack.py -------------------------------------------------------------------------------- /themes/default/static/css/codemirrorconf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/css/codemirrorconf.css -------------------------------------------------------------------------------- /themes/default/static/img/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/img/arrow-left.png -------------------------------------------------------------------------------- /themes/default/static/img/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/img/arrow-right.png -------------------------------------------------------------------------------- /themes/default/static/img/aula-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/img/aula-thumb.png -------------------------------------------------------------------------------- /themes/default/static/img/avatar-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/img/avatar-default.png -------------------------------------------------------------------------------- /themes/default/static/img/banner-home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/img/banner-home.jpg -------------------------------------------------------------------------------- /themes/default/static/img/lesson-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/img/lesson-default.png -------------------------------------------------------------------------------- /themes/default/static/img/logo-instituto-tim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/img/logo-instituto-tim.png -------------------------------------------------------------------------------- /themes/default/static/img/receipt-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/img/receipt-bg.png -------------------------------------------------------------------------------- /themes/default/static/img/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/img/selected.png -------------------------------------------------------------------------------- /themes/default/static/js/angular-youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/angular-youtube.js -------------------------------------------------------------------------------- /themes/default/static/js/codemirrorconf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/codemirrorconf.js -------------------------------------------------------------------------------- /themes/default/static/js/contact_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/contact_form.js -------------------------------------------------------------------------------- /themes/default/static/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/helpers.js -------------------------------------------------------------------------------- /themes/default/static/js/introjs/admin-lesson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/introjs/admin-lesson.js -------------------------------------------------------------------------------- /themes/default/static/js/introjs/course.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/introjs/course.js -------------------------------------------------------------------------------- /themes/default/static/js/introjs/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/introjs/home.js -------------------------------------------------------------------------------- /themes/default/static/js/introjs/lesson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/introjs/lesson.js -------------------------------------------------------------------------------- /themes/default/static/js/markdown/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/markdown/app.js -------------------------------------------------------------------------------- /themes/default/static/js/markdown/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/markdown/directives.js -------------------------------------------------------------------------------- /themes/default/static/js/markdown/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/markdown/filters.js -------------------------------------------------------------------------------- /themes/default/static/js/truncate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/truncate.js -------------------------------------------------------------------------------- /themes/default/static/js/vendor/pagedown/Markdown.Converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/vendor/pagedown/Markdown.Converter.js -------------------------------------------------------------------------------- /themes/default/static/js/vendor/pagedown/Markdown.Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/vendor/pagedown/Markdown.Editor.js -------------------------------------------------------------------------------- /themes/default/static/js/vendor/pagedown/Markdown.Sanitizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/js/vendor/pagedown/Markdown.Sanitizer.js -------------------------------------------------------------------------------- /themes/default/static/less/default/components/actions-menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/actions-menu.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/alerts.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/autocomplete.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/autocomplete.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/buttons.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/contenteditable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/contenteditable.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/course-box.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/course-box.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/course-nav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/course-nav.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/dropzone.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/dropzone.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/filters.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/filters.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/footer.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/headers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/headers.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/loading.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/loading.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/modal.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/navbar.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/navs.less: -------------------------------------------------------------------------------- 1 | .nav-tabs { 2 | margin-bottom: @line-height-computed; 3 | font-family: 'Questrial'; 4 | } -------------------------------------------------------------------------------- /themes/default/static/less/default/components/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/tables.less -------------------------------------------------------------------------------- /themes/default/static/less/default/components/text-editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/components/text-editor.less -------------------------------------------------------------------------------- /themes/default/static/less/default/modules/helpers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/modules/helpers.less -------------------------------------------------------------------------------- /themes/default/static/less/default/modules/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/modules/mixins.less -------------------------------------------------------------------------------- /themes/default/static/less/default/modules/settings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/modules/settings.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/admin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/admin.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/certificate.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/certificate.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/classes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/classes.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/course-activity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/course-activity.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/course-content.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/course-content.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/courses.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/courses.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/evaluations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/evaluations.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/forum.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/forum.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/home.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/home.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/messages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/messages.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/my-courses.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/my-courses.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/my-notes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/my-notes.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/profile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/profile.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/registration.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/registration.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/stats.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/stats.less -------------------------------------------------------------------------------- /themes/default/static/less/default/pages/users.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/default/pages/users.less -------------------------------------------------------------------------------- /themes/default/static/less/flatui/checkbox-and-radio.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/flatui/checkbox-and-radio.less -------------------------------------------------------------------------------- /themes/default/static/less/introjs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/introjs.less -------------------------------------------------------------------------------- /themes/default/static/less/main-default.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/static/less/main-default.less -------------------------------------------------------------------------------- /themes/default/templates/_admin_header_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_admin_header_inline.html -------------------------------------------------------------------------------- /themes/default/templates/_certificate-certificate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_certificate-certificate.html -------------------------------------------------------------------------------- /themes/default/templates/_certificate-receipt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_certificate-receipt.html -------------------------------------------------------------------------------- /themes/default/templates/_class-professors-inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_class-professors-inline.html -------------------------------------------------------------------------------- /themes/default/templates/_contact_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_contact_form.html -------------------------------------------------------------------------------- /themes/default/templates/_course-details-inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_course-details-inline.html -------------------------------------------------------------------------------- /themes/default/templates/_course-header-inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_course-header-inline.html -------------------------------------------------------------------------------- /themes/default/templates/_course_authors_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_course_authors_inline.html -------------------------------------------------------------------------------- /themes/default/templates/_course_professors_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_course_professors_modal.html -------------------------------------------------------------------------------- /themes/default/templates/_courses_aside.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_courses_aside.html -------------------------------------------------------------------------------- /themes/default/templates/_create_class_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_create_class_modal.html -------------------------------------------------------------------------------- /themes/default/templates/_evaluation_details_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_evaluation_details_modal.html -------------------------------------------------------------------------------- /themes/default/templates/_forum_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_forum_inline.html -------------------------------------------------------------------------------- /themes/default/templates/_go-to-course-button-inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_go-to-course-button-inline.html -------------------------------------------------------------------------------- /themes/default/templates/_highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_highlight.html -------------------------------------------------------------------------------- /themes/default/templates/_lesson_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_lesson_header.html -------------------------------------------------------------------------------- /themes/default/templates/_login_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_login_modal.html -------------------------------------------------------------------------------- /themes/default/templates/_modal_about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_modal_about.html -------------------------------------------------------------------------------- /themes/default/templates/_modal_course_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_modal_course_complete.html -------------------------------------------------------------------------------- /themes/default/templates/_notes_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_notes_inline.html -------------------------------------------------------------------------------- /themes/default/templates/_signup_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/_signup_modal.html -------------------------------------------------------------------------------- /themes/default/templates/accept-terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/accept-terms.html -------------------------------------------------------------------------------- /themes/default/templates/account/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/account/activate.html -------------------------------------------------------------------------------- /themes/default/templates/account/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/account/base.html -------------------------------------------------------------------------------- /themes/default/templates/account/email/email_confirmation_subject.txt: -------------------------------------------------------------------------------- 1 | Registo no TIM Tec 2 | -------------------------------------------------------------------------------- /themes/default/templates/account/email_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/account/email_confirm.html -------------------------------------------------------------------------------- /themes/default/templates/account/email_confirmed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/account/email_confirmed.html -------------------------------------------------------------------------------- /themes/default/templates/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/account/login.html -------------------------------------------------------------------------------- /themes/default/templates/account/login_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/account/login_modal.html -------------------------------------------------------------------------------- /themes/default/templates/account/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/account/password_reset.html -------------------------------------------------------------------------------- /themes/default/templates/account/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/account/password_reset_done.html -------------------------------------------------------------------------------- /themes/default/templates/account/password_reset_from_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/account/password_reset_from_key.html -------------------------------------------------------------------------------- /themes/default/templates/account/password_reset_from_key_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/account/password_reset_from_key_done.html -------------------------------------------------------------------------------- /themes/default/templates/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/account/signup.html -------------------------------------------------------------------------------- /themes/default/templates/account/verification_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/account/verification_sent.html -------------------------------------------------------------------------------- /themes/default/templates/administration/_alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/administration/_alert.html -------------------------------------------------------------------------------- /themes/default/templates/administration/courses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/administration/courses.html -------------------------------------------------------------------------------- /themes/default/templates/administration/lesson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/administration/lesson.html -------------------------------------------------------------------------------- /themes/default/templates/administration/permissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/administration/permissions.html -------------------------------------------------------------------------------- /themes/default/templates/administration/profile-edit-admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/administration/profile-edit-admin.html -------------------------------------------------------------------------------- /themes/default/templates/administration/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/administration/stats.html -------------------------------------------------------------------------------- /themes/default/templates/administration/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/administration/users.html -------------------------------------------------------------------------------- /themes/default/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/base.html -------------------------------------------------------------------------------- /themes/default/templates/base_clean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/base_clean.html -------------------------------------------------------------------------------- /themes/default/templates/certificate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/certificate.html -------------------------------------------------------------------------------- /themes/default/templates/certificate_print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/certificate_print.html -------------------------------------------------------------------------------- /themes/default/templates/class_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/class_edit.html -------------------------------------------------------------------------------- /themes/default/templates/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/classes.html -------------------------------------------------------------------------------- /themes/default/templates/core/class_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/core/class_form.html -------------------------------------------------------------------------------- /themes/default/templates/course-evaluations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/course-evaluations.html -------------------------------------------------------------------------------- /themes/default/templates/course-material.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/course-material.html -------------------------------------------------------------------------------- /themes/default/templates/course-notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/course-notes.html -------------------------------------------------------------------------------- /themes/default/templates/course.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/course.html -------------------------------------------------------------------------------- /themes/default/templates/courses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/courses.html -------------------------------------------------------------------------------- /themes/default/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/dashboard.html -------------------------------------------------------------------------------- /themes/default/templates/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/empty.html -------------------------------------------------------------------------------- /themes/default/templates/evaluations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/evaluations.html -------------------------------------------------------------------------------- /themes/default/templates/flatpages/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/flatpages/default.html -------------------------------------------------------------------------------- /themes/default/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/footer.html -------------------------------------------------------------------------------- /themes/default/templates/forum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/forum.html -------------------------------------------------------------------------------- /themes/default/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/header.html -------------------------------------------------------------------------------- /themes/default/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/home.html -------------------------------------------------------------------------------- /themes/default/templates/ifs/signup-completion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/ifs/signup-completion.html -------------------------------------------------------------------------------- /themes/default/templates/lesson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/lesson.html -------------------------------------------------------------------------------- /themes/default/templates/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/message.html -------------------------------------------------------------------------------- /themes/default/templates/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/messages.html -------------------------------------------------------------------------------- /themes/default/templates/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/notes.html -------------------------------------------------------------------------------- /themes/default/templates/profile-edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/profile-edit.html -------------------------------------------------------------------------------- /themes/default/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/profile.html -------------------------------------------------------------------------------- /themes/default/templates/question-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/question-create.html -------------------------------------------------------------------------------- /themes/default/templates/question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/question.html -------------------------------------------------------------------------------- /themes/default/templates/socialaccount/login_cancelled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/socialaccount/login_cancelled.html -------------------------------------------------------------------------------- /themes/default/templates/socialaccount/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/socialaccount/signup.html -------------------------------------------------------------------------------- /themes/default/templates/user-courses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/default/templates/user-courses.html -------------------------------------------------------------------------------- /themes/if/static/css/less/components/actions-menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/components/actions-menu.less -------------------------------------------------------------------------------- /themes/if/static/css/less/components/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/components/alerts.less -------------------------------------------------------------------------------- /themes/if/static/css/less/components/contenteditable.less: -------------------------------------------------------------------------------- 1 | .editable-title { 2 | font-family: 'pt_sansbold'; 3 | } 4 | -------------------------------------------------------------------------------- /themes/if/static/css/less/components/course-box.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/components/course-box.less -------------------------------------------------------------------------------- /themes/if/static/css/less/components/course-nav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/components/course-nav.less -------------------------------------------------------------------------------- /themes/if/static/css/less/components/filters.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/components/filters.less -------------------------------------------------------------------------------- /themes/if/static/css/less/components/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/components/footer.less -------------------------------------------------------------------------------- /themes/if/static/css/less/components/headers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/components/headers.less -------------------------------------------------------------------------------- /themes/if/static/css/less/components/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/components/modal.less -------------------------------------------------------------------------------- /themes/if/static/css/less/components/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/components/navbar.less -------------------------------------------------------------------------------- /themes/if/static/css/less/components/navs.less: -------------------------------------------------------------------------------- 1 | .nav-tabs { 2 | margin-bottom: @line-height-computed; 3 | font-family: 'Questrial'; 4 | } -------------------------------------------------------------------------------- /themes/if/static/css/less/modules/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/modules/mixins.less -------------------------------------------------------------------------------- /themes/if/static/css/less/modules/settings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/modules/settings.less -------------------------------------------------------------------------------- /themes/if/static/css/less/pages/admin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/pages/admin.less -------------------------------------------------------------------------------- /themes/if/static/css/less/pages/course-activity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/pages/course-activity.less -------------------------------------------------------------------------------- /themes/if/static/css/less/pages/course-content.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/pages/course-content.less -------------------------------------------------------------------------------- /themes/if/static/css/less/pages/courses.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/pages/courses.less -------------------------------------------------------------------------------- /themes/if/static/css/less/pages/forum.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/pages/forum.less -------------------------------------------------------------------------------- /themes/if/static/css/less/pages/home.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/pages/home.less -------------------------------------------------------------------------------- /themes/if/static/css/less/pages/messages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/pages/messages.less -------------------------------------------------------------------------------- /themes/if/static/css/less/pages/my-notes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/pages/my-notes.less -------------------------------------------------------------------------------- /themes/if/static/css/less/pages/registration.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/pages/registration.less -------------------------------------------------------------------------------- /themes/if/static/css/less/pages/stats.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/less/pages/stats.less -------------------------------------------------------------------------------- /themes/if/static/css/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/css/main.less -------------------------------------------------------------------------------- /themes/if/static/fonts/jelly/jelly-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/fonts/jelly/jelly-webfont.eot -------------------------------------------------------------------------------- /themes/if/static/fonts/jelly/jelly-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/fonts/jelly/jelly-webfont.svg -------------------------------------------------------------------------------- /themes/if/static/fonts/jelly/jelly-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/fonts/jelly/jelly-webfont.ttf -------------------------------------------------------------------------------- /themes/if/static/fonts/jelly/jelly-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/fonts/jelly/jelly-webfont.woff -------------------------------------------------------------------------------- /themes/if/static/fonts/jelly/jelly-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/fonts/jelly/jelly-webfont.woff2 -------------------------------------------------------------------------------- /themes/if/static/fonts/jelly/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/fonts/jelly/stylesheet.css -------------------------------------------------------------------------------- /themes/if/static/fonts/pt-sans/PTS75F-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/fonts/pt-sans/PTS75F-webfont.eot -------------------------------------------------------------------------------- /themes/if/static/fonts/pt-sans/PTS75F-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/fonts/pt-sans/PTS75F-webfont.svg -------------------------------------------------------------------------------- /themes/if/static/fonts/pt-sans/PTS75F-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/fonts/pt-sans/PTS75F-webfont.ttf -------------------------------------------------------------------------------- /themes/if/static/fonts/pt-sans/PTS75F-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/fonts/pt-sans/PTS75F-webfont.woff -------------------------------------------------------------------------------- /themes/if/static/fonts/pt-sans/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/fonts/pt-sans/stylesheet.css -------------------------------------------------------------------------------- /themes/if/static/img/banner-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/img/banner-home.png -------------------------------------------------------------------------------- /themes/if/static/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/img/bg.png -------------------------------------------------------------------------------- /themes/if/static/img/ilustra-home-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/img/ilustra-home-bg.png -------------------------------------------------------------------------------- /themes/if/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/static/img/logo.png -------------------------------------------------------------------------------- /themes/if/templates/_contact_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/templates/_contact_form.html -------------------------------------------------------------------------------- /themes/if/templates/_highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/templates/_highlight.html -------------------------------------------------------------------------------- /themes/if/templates/_modal_about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/templates/_modal_about.html -------------------------------------------------------------------------------- /themes/if/templates/account/email/email_confirmation_subject.txt: -------------------------------------------------------------------------------- 1 | Registo no Mooc do IFSul 2 | -------------------------------------------------------------------------------- /themes/if/templates/account/login_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/templates/account/login_modal.html -------------------------------------------------------------------------------- /themes/if/templates/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/templates/account/signup.html -------------------------------------------------------------------------------- /themes/if/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/if/templates/header.html -------------------------------------------------------------------------------- /themes/ifs-colors/static/fonts/coprgtl.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/fonts/coprgtl.ttf -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/banner-home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/banner-home.jpg -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/bg.png -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/certificatebg-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/certificatebg-light.png -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/certificatebg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/certificatebg.svg -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/colors-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/colors-header.png -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/ico-courses-page-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/ico-courses-page-01.png -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/ico-courses-page-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/ico-courses-page-02.png -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/ico-courses-page-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/ico-courses-page-03.png -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/ico-courses-page-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/ico-courses-page-04.png -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/ico-home-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/ico-home-01.png -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/ico-home-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/ico-home-02.png -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/ico-home-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/ico-home-03.png -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/ifs-receipt-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/ifs-receipt-bg.png -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/logo.png -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/logobrasil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/logobrasil.svg -------------------------------------------------------------------------------- /themes/ifs-colors/static/img/logopronatec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/img/logopronatec.svg -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/components/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/components/alerts.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/components/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/components/footer.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/components/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/components/modal.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/components/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/components/navbar.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/modules/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/modules/mixins.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/modules/settings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/modules/settings.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/pages/admin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/pages/admin.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/pages/certificate.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/pages/certificate.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/pages/courses.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/pages/courses.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/pages/forum.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/pages/forum.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/pages/home.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/pages/home.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/pages/messages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/pages/messages.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/pages/my-notes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/pages/my-notes.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/pages/profile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/pages/profile.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/ifs-colors/pages/stats.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/ifs-colors/pages/stats.less -------------------------------------------------------------------------------- /themes/ifs-colors/static/less/main-ifs-colors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/static/less/main-ifs-colors.less -------------------------------------------------------------------------------- /themes/ifs-colors/templates/_certificate-certificate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/_certificate-certificate.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/_contact_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/_contact_form.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/_highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/_highlight.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/_modal_about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/_modal_about.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/account/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/account/base.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/account/email/email_confirmation_subject.txt: -------------------------------------------------------------------------------- 1 | Registo no Mooc do IFSul 2 | -------------------------------------------------------------------------------- /themes/ifs-colors/templates/account/login_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/account/login_modal.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/account/signup-ifsul.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/account/signup-ifsul.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/administration/courses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/administration/courses.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/administration/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/administration/users.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/course.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/course.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/courses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/courses.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/flatpages/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/flatpages/default.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/footer.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/header.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/ifs/signup-completion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/ifs/signup-completion.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/lesson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/lesson.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/notes.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/profile-edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/profile-edit.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/profile.html -------------------------------------------------------------------------------- /themes/ifs-colors/templates/user-courses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/ifs-colors/templates/user-courses.html -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/components/actions-menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/components/actions-menu.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/components/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/components/alerts.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/components/course-box.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/components/course-box.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/components/course-nav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/components/course-nav.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/components/filters.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/components/filters.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/components/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/components/footer.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/components/headers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/components/headers.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/components/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/components/modal.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/components/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/components/navbar.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/modules/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/modules/mixins.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/modules/settings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/modules/settings.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/pages/admin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/pages/admin.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/pages/certificate.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/pages/certificate.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/pages/course-activity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/pages/course-activity.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/pages/course-content.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/pages/course-content.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/pages/courses.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/pages/courses.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/pages/forum.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/pages/forum.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/pages/home.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/pages/home.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/pages/messages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/pages/messages.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/pages/my-notes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/pages/my-notes.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/pages/profile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/pages/profile.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/pages/registration.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/pages/registration.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/less/pages/stats.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/less/pages/stats.less -------------------------------------------------------------------------------- /themes/paralapraca/static/css/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/css/main.less -------------------------------------------------------------------------------- /themes/paralapraca/static/fonts/cordelencarnado-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/fonts/cordelencarnado-webfont.ttf -------------------------------------------------------------------------------- /themes/paralapraca/static/fonts/cordelencarnado-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/fonts/cordelencarnado-webfont.woff -------------------------------------------------------------------------------- /themes/paralapraca/static/fonts/robotoslab-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/fonts/robotoslab-bold-webfont.ttf -------------------------------------------------------------------------------- /themes/paralapraca/static/fonts/robotoslab-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/fonts/robotoslab-bold-webfont.woff -------------------------------------------------------------------------------- /themes/paralapraca/static/fonts/robotoslab-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/fonts/robotoslab-regular-webfont.ttf -------------------------------------------------------------------------------- /themes/paralapraca/static/fonts/robotoslab-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/fonts/robotoslab-regular-webfont.woff -------------------------------------------------------------------------------- /themes/paralapraca/static/img/bichos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/img/bichos.png -------------------------------------------------------------------------------- /themes/paralapraca/static/img/colors-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/img/colors-header.png -------------------------------------------------------------------------------- /themes/paralapraca/static/img/header-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/img/header-background.png -------------------------------------------------------------------------------- /themes/paralapraca/static/img/lesson-frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/img/lesson-frame.svg -------------------------------------------------------------------------------- /themes/paralapraca/static/img/logo-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/img/logo-footer.png -------------------------------------------------------------------------------- /themes/paralapraca/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/static/img/logo.svg -------------------------------------------------------------------------------- /themes/paralapraca/templates/_certificate-certificate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/_certificate-certificate.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/_contact_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/_contact_form.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/_course-header-inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/_course-header-inline.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/_forum_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/_forum_inline.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/_highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/_highlight.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/_lesson_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/_lesson_header.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/_modal_about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/_modal_about.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/_modal_course_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/_modal_course_complete.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/account/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/account/base.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/account/email/email_confirmation_subject.txt: -------------------------------------------------------------------------------- 1 | Registo no Mooc do IFSul 2 | -------------------------------------------------------------------------------- /themes/paralapraca/templates/account/login_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/account/login_modal.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/account/signup-ifsul.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/account/signup-ifsul.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/administration/courses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/administration/courses.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/administration/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/administration/users.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/course-notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/course-notes.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/course.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/course.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/courses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/courses.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/flatpages/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/flatpages/default.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/footer.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/forum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/forum.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/header.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/header_plpc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/header_plpc.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/home.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/ifs/signup-completion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/ifs/signup-completion.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/lesson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/lesson.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/notes.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/profile-edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/profile-edit.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/profile.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/question-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/question-create.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/question.html -------------------------------------------------------------------------------- /themes/paralapraca/templates/user-courses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/paralapraca/templates/user-courses.html -------------------------------------------------------------------------------- /themes/timtec/static/fonts/teuton/teuton24pro-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/fonts/teuton/teuton24pro-webfont.eot -------------------------------------------------------------------------------- /themes/timtec/static/fonts/teuton/teuton24pro-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/fonts/teuton/teuton24pro-webfont.svg -------------------------------------------------------------------------------- /themes/timtec/static/fonts/teuton/teuton24pro-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/fonts/teuton/teuton24pro-webfont.ttf -------------------------------------------------------------------------------- /themes/timtec/static/fonts/teuton/teuton24pro-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/fonts/teuton/teuton24pro-webfont.woff -------------------------------------------------------------------------------- /themes/timtec/static/fonts/teuton/teuton25pro-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/fonts/teuton/teuton25pro-webfont.eot -------------------------------------------------------------------------------- /themes/timtec/static/fonts/teuton/teuton25pro-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/fonts/teuton/teuton25pro-webfont.svg -------------------------------------------------------------------------------- /themes/timtec/static/fonts/teuton/teuton25pro-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/fonts/teuton/teuton25pro-webfont.ttf -------------------------------------------------------------------------------- /themes/timtec/static/fonts/teuton/teuton25pro-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/fonts/teuton/teuton25pro-webfont.woff -------------------------------------------------------------------------------- /themes/timtec/static/fonts/teuton/teuton26pro-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/fonts/teuton/teuton26pro-webfont.eot -------------------------------------------------------------------------------- /themes/timtec/static/fonts/teuton/teuton26pro-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/fonts/teuton/teuton26pro-webfont.svg -------------------------------------------------------------------------------- /themes/timtec/static/fonts/teuton/teuton26pro-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/fonts/teuton/teuton26pro-webfont.ttf -------------------------------------------------------------------------------- /themes/timtec/static/fonts/teuton/teuton26pro-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/fonts/teuton/teuton26pro-webfont.woff -------------------------------------------------------------------------------- /themes/timtec/static/img/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/arrows.png -------------------------------------------------------------------------------- /themes/timtec/static/img/bg-barra-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/bg-barra-twitter.png -------------------------------------------------------------------------------- /themes/timtec/static/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/bg.jpg -------------------------------------------------------------------------------- /themes/timtec/static/img/home-illust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/home-illust.png -------------------------------------------------------------------------------- /themes/timtec/static/img/icon-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/icon-contact.png -------------------------------------------------------------------------------- /themes/timtec/static/img/illustrations/course-intro-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/illustrations/course-intro-l.png -------------------------------------------------------------------------------- /themes/timtec/static/img/illustrations/course-intro-m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/illustrations/course-intro-m.png -------------------------------------------------------------------------------- /themes/timtec/static/img/illustrations/course-lesson-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/illustrations/course-lesson-l.png -------------------------------------------------------------------------------- /themes/timtec/static/img/illustrations/course-lesson-m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/illustrations/course-lesson-m.png -------------------------------------------------------------------------------- /themes/timtec/static/img/illustrations/courses-list-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/illustrations/courses-list-l.png -------------------------------------------------------------------------------- /themes/timtec/static/img/illustrations/courses-list-m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/illustrations/courses-list-m.png -------------------------------------------------------------------------------- /themes/timtec/static/img/illustrations/home-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/illustrations/home-l.png -------------------------------------------------------------------------------- /themes/timtec/static/img/illustrations/home-m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/illustrations/home-m.png -------------------------------------------------------------------------------- /themes/timtec/static/img/illustrations/instituto-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/illustrations/instituto-l.png -------------------------------------------------------------------------------- /themes/timtec/static/img/illustrations/instituto-m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/illustrations/instituto-m.png -------------------------------------------------------------------------------- /themes/timtec/static/img/illustrations/timtec-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/illustrations/timtec-l.png -------------------------------------------------------------------------------- /themes/timtec/static/img/illustrations/timtec-m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/illustrations/timtec-m.png -------------------------------------------------------------------------------- /themes/timtec/static/img/logo-instituto-tim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/logo-instituto-tim.png -------------------------------------------------------------------------------- /themes/timtec/static/img/logo-timtec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/img/logo-timtec.png -------------------------------------------------------------------------------- /themes/timtec/static/less/main-timtec.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/main-timtec.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/actions-menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/actions-menu.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/admin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/admin.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/alerts.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/buttons.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/certificate.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/certificate.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/classes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/classes.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/contenteditable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/contenteditable.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/course-box.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/course-box.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/course-content.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/course-content.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/course-nav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/course-nav.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/courses.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/courses.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/flatpage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/flatpage.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/footer.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/forum.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/forum.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/headers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/headers.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/home.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/home.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/login-modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/login-modal.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/messages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/messages.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/my-courses.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/my-courses.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/my-notes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/my-notes.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/navbar.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/new-timtec.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/new-timtec.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/profile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/profile.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/registration.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/registration.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/settings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/settings.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/stats.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/stats.less -------------------------------------------------------------------------------- /themes/timtec/static/less/timtec/users.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/static/less/timtec/users.less -------------------------------------------------------------------------------- /themes/timtec/templates/_admin_header_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/templates/_admin_header_inline.html -------------------------------------------------------------------------------- /themes/timtec/templates/_certificate-receipt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/templates/_certificate-receipt.html -------------------------------------------------------------------------------- /themes/timtec/templates/_courses_aside.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/templates/_courses_aside.html -------------------------------------------------------------------------------- /themes/timtec/templates/_highlight.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /themes/timtec/templates/_lesson_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/templates/_lesson_header.html -------------------------------------------------------------------------------- /themes/timtec/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/templates/header.html -------------------------------------------------------------------------------- /themes/timtec/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/templates/home.html -------------------------------------------------------------------------------- /themes/timtec/templates/user-courses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/themes/timtec/templates/user-courses.html -------------------------------------------------------------------------------- /timtec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /timtec/context_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/context_processor.py -------------------------------------------------------------------------------- /timtec/ngmincombo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/ngmincombo.py -------------------------------------------------------------------------------- /timtec/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/settings.py -------------------------------------------------------------------------------- /timtec/settings_local.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/settings_local.py.template -------------------------------------------------------------------------------- /timtec/settings_local.py.template_dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/settings_local.py.template_dev -------------------------------------------------------------------------------- /timtec/settings_local_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/settings_local_ci.py -------------------------------------------------------------------------------- /timtec/settings_local_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/settings_local_demo.py -------------------------------------------------------------------------------- /timtec/settings_local_design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/settings_local_design.py -------------------------------------------------------------------------------- /timtec/settings_local_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/settings_local_dev.py -------------------------------------------------------------------------------- /timtec/settings_local_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/settings_local_docker.py -------------------------------------------------------------------------------- /timtec/settings_local_ifsul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/settings_local_ifsul.py -------------------------------------------------------------------------------- /timtec/settings_local_production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/settings_local_production.py -------------------------------------------------------------------------------- /timtec/settings_local_staging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/settings_local_staging.py -------------------------------------------------------------------------------- /timtec/settings_local_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/settings_local_test.py -------------------------------------------------------------------------------- /timtec/settings_local_timtec_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/settings_local_timtec_dev.py -------------------------------------------------------------------------------- /timtec/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/urls.py -------------------------------------------------------------------------------- /timtec/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacklabr/timtec/HEAD/timtec/wsgi.py --------------------------------------------------------------------------------