mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 22:23:23 +00:00
add font-awesome
This commit is contained in:
parent
13a2cc22dd
commit
acbeb3d3c8
4
core/static/core/font-awesome/css/font-awesome.min.css
vendored
Normal file
4
core/static/core/font-awesome/css/font-awesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
core/static/core/font-awesome/fonts/FontAwesome.otf
Normal file
BIN
core/static/core/font-awesome/fonts/FontAwesome.otf
Normal file
Binary file not shown.
BIN
core/static/core/font-awesome/fonts/fontawesome-webfont.eot
Normal file
BIN
core/static/core/font-awesome/fonts/fontawesome-webfont.eot
Normal file
Binary file not shown.
2671
core/static/core/font-awesome/fonts/fontawesome-webfont.svg
Normal file
2671
core/static/core/font-awesome/fonts/fontawesome-webfont.svg
Normal file
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 434 KiB |
BIN
core/static/core/font-awesome/fonts/fontawesome-webfont.ttf
Normal file
BIN
core/static/core/font-awesome/fonts/fontawesome-webfont.ttf
Normal file
Binary file not shown.
BIN
core/static/core/font-awesome/fonts/fontawesome-webfont.woff
Normal file
BIN
core/static/core/font-awesome/fonts/fontawesome-webfont.woff
Normal file
Binary file not shown.
BIN
core/static/core/font-awesome/fonts/fontawesome-webfont.woff2
Normal file
BIN
core/static/core/font-awesome/fonts/fontawesome-webfont.woff2
Normal file
Binary file not shown.
@ -9,7 +9,14 @@
|
|||||||
<link rel="stylesheet" href="{{ static('core/jquery.datetimepicker.min.css') }}">
|
<link rel="stylesheet" href="{{ static('core/jquery.datetimepicker.min.css') }}">
|
||||||
<link rel="stylesheet" href="{{ static('core/js/ui/jquery-ui.min.css') }}">
|
<link rel="stylesheet" href="{{ static('core/js/ui/jquery-ui.min.css') }}">
|
||||||
<link rel="stylesheet" href="{{ static('ajax_select/css/ajax_select.css') }}">
|
<link rel="stylesheet" href="{{ static('ajax_select/css/ajax_select.css') }}">
|
||||||
<link href="{{ scss('core/style.scss') }}" rel="stylesheet" type="text/css" />
|
<link rel="stylesheet" href="{{ scss('core/style.scss') }}">
|
||||||
|
{% if settings.DEBUG %}
|
||||||
|
<link rel="stylesheet" href="{{ static('core/font-awesome/css/font-awesome.min.css') }}">
|
||||||
|
{% else %}
|
||||||
|
<noscript><link rel="stylesheet" href="https://use.fontawesome.com/775817bb35.css"></noscript>
|
||||||
|
<script src="https://use.fontawesome.com/c06c9c6980.js"></script>
|
||||||
|
|
||||||
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
@ -56,11 +63,11 @@
|
|||||||
<li>
|
<li>
|
||||||
<a href="{{ url('counter:activity', counter_id=bar.id) }}" style="padding: 0px">
|
<a href="{{ url('counter:activity', counter_id=bar.id) }}" style="padding: 0px">
|
||||||
{% if bar.is_inactive(): %}
|
{% if bar.is_inactive(): %}
|
||||||
<span style="color: orange">?</span>
|
<i class="fa fa-question" style="color: orange"></i>
|
||||||
{% elif bar.is_open(): %}
|
{% elif bar.is_open(): %}
|
||||||
<span style="color: green">✓</span>
|
<i class="fa fa-check" style="color: green"></i>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span style="color: red">✗</span>
|
<i class="fa fa-times" style="color: red"></i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ bar }}
|
{{ bar }}
|
||||||
</a>
|
</a>
|
||||||
@ -76,7 +83,7 @@
|
|||||||
<a href="{{ url('core:user_profile', user_id=user.id) }}">{{ user.get_display_name() }}</a>
|
<a href="{{ url('core:user_profile', user_id=user.id) }}">{{ user.get_display_name() }}</a>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="#" onclick="display_notif()">🔔 ({{ user.notifications.filter(viewed=False).count() }})</a>
|
<a href="#" onclick="display_notif()"><i class="fa fa-bell-o"></i> ({{ user.notifications.filter(viewed=False).count() }})</a>
|
||||||
<ul id="header_notif">
|
<ul id="header_notif">
|
||||||
{% for n in user.notifications.filter(viewed=False).order_by('-date') %}
|
{% for n in user.notifications.filter(viewed=False).order_by('-date') %}
|
||||||
<li>
|
<li>
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
{% block file %}
|
{% block file %}
|
||||||
<h3>
|
<h3>
|
||||||
{% if file.is_folder %}
|
{% if file.is_folder %}
|
||||||
📁
|
<i class="fa fa-folder fa-3x" aria-hidden="true"></i>
|
||||||
{% else %}
|
{% else %}
|
||||||
🗎
|
<i class="fa fa-file fa-3x" aria-hidden="true"></i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ file.get_display_name() }}
|
{{ file.get_display_name() }}
|
||||||
</h3>
|
</h3>
|
||||||
@ -38,12 +38,12 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
<ul>
|
<ul>
|
||||||
{% for f in file.children.order_by('-is_folder', 'name').all() %}
|
{% for f in file.children.order_by('-is_folder', 'name').all() %}
|
||||||
<li>
|
<li style="list-style-type: none;">
|
||||||
<input type="checkbox" name="file_list" value="{{ f.id }}">
|
<input type="checkbox" name="file_list" value="{{ f.id }}">
|
||||||
{% if f.is_folder %}
|
{% if f.is_folder %}
|
||||||
📁
|
<i class="fa fa-folder" aria-hidden="true"></i>
|
||||||
{% else %}
|
{% else %}
|
||||||
🗎
|
<i class="fa fa-file" aria-hidden="true"></i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a href="{{ url('core:file_detail', file_id=f.id, popup=popup) }}">{{ f.get_display_name() }}</a></li>
|
<a href="{{ url('core:file_detail', file_id=f.id, popup=popup) }}">{{ f.get_display_name() }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -6,11 +6,11 @@
|
|||||||
<h3>{% trans %}File list{% endtrans %}</h3>
|
<h3>{% trans %}File list{% endtrans %}</h3>
|
||||||
<ul>
|
<ul>
|
||||||
{% for f in file_list %}
|
{% for f in file_list %}
|
||||||
<li>
|
<li style="list-style-type: none;">
|
||||||
{% if f.is_folder %}
|
{% if f.is_folder %}
|
||||||
📁
|
<i class="fa fa-folder" aria-hidden="true"></i>
|
||||||
{% else %}
|
{% else %}
|
||||||
🗎
|
<i class="fa fa-file" aria-hidden="true"></i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a href="{{ url('core:file_detail', file_id=f.id, popup=popup) }}">{{ f.name }}</a></li>
|
<a href="{{ url('core:file_detail', file_id=f.id, popup=popup) }}">{{ f.name }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
Reference in New Issue
Block a user