src/egonomy/templates/egonomy_base.html
author ymh <ymh.work@gmail.com>
Fri, 21 Mar 2014 16:25:21 +0100
changeset 271 4e7178ce5688
parent 245 src/egonomy/templates/egonomy_newbase.html@5dc7e63590c7
child 277 623e744e2f9f
permissions -rw-r--r--
Implement single sign on with egonomy - mobenfact

{% load static %}
{% load i18n %}
<!DOCTYPE html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
{% block head %}
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="description" content="eGonomy">
    <title>TagItAll by eGonomy &raquo; {% block title %}Base{% endblock %}</title>
    {% block css_declaration %}{% endblock %}
    {% block css_import %}
    <link rel="stylesheet" href="{% static 'egonomy/css/reset.css' %}" />
    <link rel="stylesheet" href="{% static 'egonomy/css/fonts.css' %}" />
    <link rel="stylesheet" href="{% static 'egonomy/css/style.css' %}" />
    {% endblock %}
    {% block css_page %}{% endblock %}
</head>
{% endblock %}
<body>
    <div class="popin-wrap">
      {% if current_user_collection_list %}
        <div id="add-to-collection" class="popin popin-new-collection box-shadow">
            <header>
                <h2>{% trans "Add to the collection" %}</h2>
                <a href="#" class="close-popin"></a>
            </header>
            <section>
                <form class="ajax-form" action="{% url 'add_item' %}" method="POST">
                    <p>
                        <label for="collection-name">{% trans "Add to" %} :</label>
                        <label class="styled-select">
                            <select name="collection-pk" id="collection-pk">
                              {% for c in current_user_collection_list %}
                                <option value="{{ c.pk }}">{{ c.title }}</option>
                              {% endfor %}
                            </select>
                        </label>
                    </p>
                    <p>
                        <label class="block" for="item-description">{% trans "Image comment" %} :</label>
                        <textarea name="item-description" id="item-description"></textarea>
                    </p>
                    <div class="buttons">
                        <a href="#" class="btn close-popin">{% trans "Cancel" %}</a>
                        <input class="btn" type="submit" value="{% trans 'Submit' %}">
                    </div>
                    <input class="item-type" name="item-type" type="hidden" value="">
                    <input class="item-id" name="item-id" type="hidden" value="">{% csrf_token %}
                </form>
            </section>
        </div>
        <div class="popin additem-success box-shadow">
            <h2>{% trans "The item was successfully added to the collection" %}</h2>
            <h2><a class="collection-url" href="#">{% trans "See the collection" %}</a></h2>
        </div>
        <div class="popin additem-error box-shadow">
            <h2>{% trans "An error occurred while adding the item to the collection" %}</h2>
        </div>
      {% endif %}
      {% block popins %}{% endblock %}
    </div>
    <div class="wrap">
        <header class="clearfix">
            <h1><a href="{% url 'home' %}">egonomy</a></h1>
            <div class="col-right">
                <ul class="head-login clearfix">
                    <li>
                        <form id="search-form" action="{% if search_fragment %}{% url 'all_fragments' %}{% else %}{% url 'all_pictures' %}{% endif %}" method="GET">
                            <p>
			                    <input id="search-field" type="text" placeholder="{% trans 'Search' %}" name="search"/>
			                    <label class="styled-select">
				                    <select id="search-type">
				                        <option value="{% url 'all_pictures' %}"{% if not search_fragment %} selected{% endif %}>Images</option>
				                        <option value="{% url 'all_fragments' %}"{% if search_fragment %} selected{% endif %}>Fragments</option>
				                    </select>
			                    </label>
			                    <input type="hidden" value="all" name="field">
		                    </p>
		                </form>
                    </li>
                  {% if user.is_authenticated %}
                    <li class="hello-user">{% trans "Hello" %} <a href="{% url 'auth_password_change' %}">{{ user.username }}</a>
                    <li><span class="dot-6"></span></li>
                    <li><a href="{% url 'logout' %}?next={% url 'home' %}">{% trans "Log out" %}</a></li>
                  {% else %}
                    <li class="hello-user"><a href="{% url 'login' %}">{% trans "Log in" %}</a></li>
                  {% endif %}
                </ul>
                <nav>
                    <ul class="nav clearfix">
                        <li><a href="{% url 'all_pictures' %}" {% if all_pictures %}class="active"{% endif %}>{% trans "explore" %}</a></li>
                        <li><span class="dot-10"></span></li>
                        <li><a href="{% url 'all_collections' %}" {% if all_collections %}class="active"{% endif %}>{% trans "collect" %}</a></li>
                        {% if EGONOMY_URL %}
                            <li><span class="dot-10"></span></li>
                            <li><a href="{{ EGONOMY_URL }}" target="_blank">Egonomy</a></li>
                        {% endif %}
                    </ul>
                  {% if user.is_authenticated %}
                    <ul class="sub-nav clearfix">
                        <li><a href="{% url 'user_collections' username=user %}" {% if user_collections %}class="active"{% endif %}>{% trans "my collections" %}</a></li>
                        <li><span class="dot-6"></span></li>
                        <li><a href="{% url 'user_fragments' username=user %}" {% if user_fragments %}class="active"{% endif %}>{% trans "my fragments" %}</a></li>
                        <!--li><span class="dot-6"></span></li>
                        <li><a href="#">mon profil</a></li-->
                    </ul>
                  {% endif %}
                </nav>
            </div>
        </header>
        <section>
        {% block content %}
        {% endblock %}
        </section>
        <footer class="clearfix">
            <!--h6>EGONOMY est un projet de l’IRI et de la réunion des Musées Nationaux</h6-->
            <p>&copy; IRI 2013 - v{{ VERSION }}</p>
        </footer>
    </div><!-- /.wrap -->
    {% block js_common %}
    <script type="text/javascript" src="{% static 'egonomy/lib/jquery.min.js' %}"></script>
    <script type="text/javascript" src="{% static 'egonomy/js/masonry.min.js' %}"></script>
    <script type="text/javascript" src="{% static 'egonomy/js/main.js' %}"></script>
    {% endblock %}
    <script type="text/javascript">
    $(function() {
        $("#search-type").change(function() {
            $("#search-form").attr("action", $(this).val());
            if ($("#search-field").val()) {
                $("#search-form").submit();
            }
        });
    });
    </script>
    {% block js_page %}
    {% endblock %}
<script> 
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ 
(i[r].q=i[r].q||[]).push(arguments)},
i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) 
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-30064213-3', 'iri-research.org'); 
ga('send', 'pageview');
</script>
</body>
</html>