Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Simon Daron
panikweb
Commits
c0c36824
Commit
c0c36824
authored
Nov 03, 2013
by
fred
Browse files
use a single load call for modules
parent
3a0c0c59
Changes
19
Hide whitespace changes
Inline
Side-by-side
panikweb_templates/templates/base.html
View file @
c0c36824
{% load paniktags
%}{% load
fiber_tags %}
<!DOCTYPE html>
{% load paniktags fiber_tags %}
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
/>
...
...
panikweb_templates/templates/emissions/detail.html
View file @
c0c36824
{% load i18n %}
{% load paniktags %}
{% load i18n paniktags %}
<div
class=
"emission emission-detail cf"
>
<article
class=
"text userContent"
>
<div
class=
"metas marged"
>
...
...
panikweb_templates/templates/emissions/emission_detail.html
View file @
c0c36824
{% extends "emissions.html" %}
{% load paniktags %}
{% load thumbnails %}
{% load staticfiles %}
{% load paniktags thumbnails staticfiles %}
{% block bodyID %}Emissions{% endblock %}
{% block title %}{{ emission.title }}{% endblock %}
...
...
panikweb_templates/templates/emissions/episode_detail.html
View file @
c0c36824
{% extends "emissions/emission_detail.html" %}
{% load paniktags %}
{% load thumbnails %}
{% load staticfiles %}
{% load paniktags thumbnails staticfiles %}
{% block title %}{{ episode.title }} - {{ episode.emission.title }} {% endblock %}
{% block head %}
...
...
panikweb_templates/templates/emissions/newsitem_detail.html
View file @
c0c36824
{% extends "news.html" %}
{% load thumbnails %}
{% load paniktags %}
{% load thumbnails paniktags %}
{% block title %}{{ newsitem.title }}{% endblock %}
{% block head %}
...
...
panikweb_templates/templates/emissions/resume.html
View file @
c0c36824
{% load thumbnails %}
{% load staticfiles %}
{% load thumbnails staticfiles %}
<div
class=
"emission emission-resume resume cf"
>
<div
class=
"{% if emission.archived %}archived{% endif %}"
>
<a
class=
"block"
href=
"{% url 'emission-view' slug=emission.slug %}"
>
...
...
panikweb_templates/templates/episodes/detail.html
View file @
c0c36824
{% load thumbnails %}
{% load paniktags %}
{% load thumbnails paniktags %}
<div
class=
"episode detail episode-detail cf"
>
{% if episode.first_diffusion %}
<div
class=
"dateBloc"
>
...
...
panikweb_templates/templates/episodes/inline.html
View file @
c0c36824
{% load thumbnails %}
{% load paniktags %}
{% load staticfiles %}
{% load thumbnails paniktags staticfiles %}
<div
class=
"episode inline episode-inline"
>
<div
class=
"logo"
>
{% if episode.image %}
...
...
panikweb_templates/templates/episodes/resume.html
View file @
c0c36824
{% load thumbnails %}
{% load paniktags %}
{% load staticfiles %}
{% load thumbnails paniktags staticfiles %}
<div
class=
"episode {% if model %}{{ model }}{% else %}resume{% endif %} cf {{ class }}"
>
{% if date != False %}
<div
class=
"dateBloc"
>
...
...
panikweb_templates/templates/home.html
View file @
c0c36824
{% extends "base.html" %}
{% load thumbnails %}
{% load paniktags %}
{% load staticfiles %}
{% load i18n %}
{% load thumbnails paniktags staticfiles %}
{% block bodyID %}Home{% endblock %}
{% block title %}Accueil{% endblock %}
{% block main %}
...
...
panikweb_templates/templates/includes/audio.html
View file @
c0c36824
{% load soundfiles %}
{% load paniktags %}
{% load soundfiles paniktags %}
{% if sound|is_format_available:'mp3' or sound|is_format_available:'ogg' %}
<div
class=
"audio"
>
<button
class=
"resymbol icon-plus-sign big"
...
...
panikweb_templates/templates/includes/player.html
View file @
c0c36824
{% load i18n %}
{% load paniktags %}
{% load i18n paniktags %}
<div
id=
"player-container"
class=
"normal cf"
>
<button
id=
"togglePlayer"
class=
"hidden left huge icon-double-angle-left "
></button>
<div
id=
"player"
class=
"cf"
>
...
...
panikweb_templates/templates/news.html
View file @
c0c36824
{% extends "base.html"%}
{% load paniktags %}
{% load i18n %}
{% load paniktags i18n %}
{% block title %}Actus{% endblock %}
{% block toptitle %}
<h1
class=
"top"
><a
href=
"{% url 'news' %}"
>
Actus
</a></h1>
...
...
panikweb_templates/templates/news/archives.html
View file @
c0c36824
{% extends "news.html" %}
{% load thumbnails %}
{% load paniktags %}
{% load thumbnails paniktags %}
{% block title %}Actus - Archives{% endblock %}
{% block nav %}
<div
class=
"search-filters"
>
...
...
panikweb_templates/templates/news/inline.html
View file @
c0c36824
{% load thumbnails %}
{% load staticfiles %}
{% load thumbnails staticfiles %}
<div
class=
"content content-inline {% if class != "
special
"
%}
inline
{%
endif
%}
cf
{{
class
}}"
>
<a
class=
"block cf"
href=
"{% url 'newsitem-view' slug=content.slug %}"
>
{% if class == "special" and content.category %}
...
...
panikweb_templates/templates/news/roll.html
View file @
c0c36824
{% load thumbnails
%}{% load i18n %}{% load
paniktags %}
{% load thumbnails
i18n
paniktags %}
<div
id=
"newsRoll"
>
<div
class=
"newsRoll center cf"
>
<ul
id=
"ticker"
class=
"custom bigNews marged"
style=
"height:300px;overflow:hidden;"
>
...
...
panikweb_templates/templates/party.html
View file @
c0c36824
{% extends "base.html" %}
{% load thumbnails %}
{% load paniktags %}
{% load staticfiles %}
{% load i18n %}
{% load thumbnails paniktags %}
{% block bodyID %}Party{% endblock %}
{% block title %}Party{% endblock %}
...
...
panikweb_templates/templates/search/search.html
View file @
c0c36824
{% extends 'panikdb/base.html' %}
{% load paniktags %}
{% load highlight %}
{% load paniktags highlight %}
{% block bodyID %}Search{% endblock %}
{% block title %}Recherche{% endblock %}
{% block nav %}
...
...
panikweb_templates/templates/soundfiles/resume.html
View file @
c0c36824
{% load thumbnails %}
{% load paniktags %}
{% load staticfiles %}
{% load thumbnails paniktags staticfiles %}
<div
class=
"episode soundfile inline cf"
>
<div
class=
"logo"
>
{% if soundfile.episode.image %}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment