|
|
@@ -24,15 +24,35 @@
|
|
24
|
24
|
<input type="submit" value="Upload New Icon">
|
|
25
|
25
|
</form>
|
|
26
|
26
|
|
|
27
|
|
- {% for icon in icons %}
|
|
28
|
|
-
|
|
29
|
|
- <img class="icon" src="{{ url_for('static', filename='icons/'+icon[2]) }}">
|
|
30
|
|
- <br class="clear" />
|
|
31
|
|
- <a href="{{ url_for('manage.set_main_icon', mid=member[0], icon_id=icon[0]) }}">Set Main Icon</a> ☆ <a href="">Delete Icon</a>
|
|
32
|
|
- <br class="clear" />
|
|
33
|
|
- <hr>
|
|
34
|
|
-
|
|
35
|
|
- {% endfor %}
|
|
|
27
|
+ <div id="manage_icons">
|
|
|
28
|
+ {% for icon in icons %}
|
|
|
29
|
+
|
|
|
30
|
+ <img class="icon" src="{{ url_for('static', filename='icons/'+icon[2]) }}">
|
|
|
31
|
+ <br class="clear" />
|
|
|
32
|
+ <a href="{{ url_for('manage.set_main_icon', mid=member[0], icon_id=icon[0]) }}">Set Main Icon</a> ☆ <a href="">Delete Icon</a>
|
|
|
33
|
+ <br class="clear" />
|
|
|
34
|
+ <hr>
|
|
|
35
|
+
|
|
|
36
|
+ {% endfor %}
|
|
|
37
|
+ </div>
|
|
|
38
|
+
|
|
|
39
|
+ <div class="heading">Manage Theme</div>
|
|
|
40
|
+
|
|
|
41
|
+ <!-- <form method="post">
|
|
|
42
|
+ <label for="favcolor">Color 1:</label>
|
|
|
43
|
+ <input type="color" id="color1" name="color1" value="#ff0000"><br>
|
|
|
44
|
+ <label for="favcolor">Color 2:</label>
|
|
|
45
|
+ <input type="color" id="color1" name="color1" value="#ff0000"><br>
|
|
|
46
|
+ <label for="favcolor">Color 3:</label>
|
|
|
47
|
+ <input type="color" id="color1" name="color1" value="#ff0000"><br>
|
|
|
48
|
+ <label for="favcolor">Color 4:</label>
|
|
|
49
|
+ <input type="color" id="color1" name="color1" value="#ff0000"><br>
|
|
|
50
|
+ <label for="favcolor">Color 5:</label>
|
|
|
51
|
+ <input type="color" id="color1" name="color1" value="#ff0000"><br>
|
|
|
52
|
+ <input type="submit" value="Set Member Theme">
|
|
|
53
|
+ </form> -->
|
|
|
54
|
+
|
|
|
55
|
+ <a href="">Click here to reset member theme to default</a>
|
|
36
|
56
|
|
|
37
|
57
|
{{ error }}
|
|
38
|
58
|
|