summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/group.html4
-rw-r--r--templates/layout.html7
2 files changed, 6 insertions, 5 deletions
diff --git a/templates/group.html b/templates/group.html
index 1e3a06c..9cbd832 100644
--- a/templates/group.html
+++ b/templates/group.html
@@ -45,10 +45,10 @@
</td>
<td class="col-sm-2 text-right">
<a href="{{ url_for('pad_change', group_name=group.name, pad_name=pad.name) }}" class="btn btn-xs btn-info">
- <span class="glyphicon glyphicon-cog"></span>
+ <span class="fa fa-wrench fa-lg"></span>
</a>
<a href="{{ url_for('pad_delete', group_name=group.name, pad_name=pad.name) }}" class="btn btn-xs btn-danger">
- <span class="glyphicon glyphicon-remove"></span>
+ <span class="fa fa-trash fa-lg"></span>
</a>
</td>
</tr>
diff --git a/templates/layout.html b/templates/layout.html
index 5439633..bf835a9 100644
--- a/templates/layout.html
+++ b/templates/layout.html
@@ -7,6 +7,7 @@
<!-- Bootstrap -->
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/bootstrap-theme.min.css') }}" rel="stylesheet">
+ <link href="{{ url_for('static', filename='css/font-awesome.min.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/custom.css') }}" rel="stylesheet">
</head>
@@ -49,7 +50,7 @@
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button"
aria-haspopup="true" aria-expanded="false">
- <span class="glyphicon glyphicon-user"></span>
+ <span class="fa fa-user"></span>
{{ current_user.name }}
<span class="caret"></span>
</a>
@@ -57,7 +58,7 @@
<ul class="dropdown-menu">
<li>
<a href="{{ url_for('logout') }}">
- <span class="glyphicon glyphicon-log-out"></span>
+ <span class="fa fa-sign-out fa-lg"></span>
Logout
</a>
</li>
@@ -67,7 +68,7 @@
{% else %}
<li>
<a href="{{ url_for('login') }}">
- <span class="glyphicon glyphicon-log-in"></span>
+ <span class="fa fa-sign-in fa-lg"></span>
Login
</a>
</li>