{% extends "hydra_presentation/dom_module.html" %}
{% load static %}
{% load polymer %}
{% block styles %}
{% for style in module.styles %}
{% link style %}
{% endfor %}
{% endblock styles %}
{% block icons %}
{% endblock icons %}
{% block components %}
{% for component in module.components %}
{% link component %}
{% endfor %}
{% for mixin in module.mixins %}
{% link mixin %}
{% endfor %}
{% endblock components %}
{% block style %}
{% endblock style %}
{% block content %}
{% endblock content %}
{% block initialize %}
{% endblock initialize %}
{% block properties %}
mainTitle: {
type: String
},
userInfoEndpointUrl: {
type: String
},
logOutEndpointUrl: {
type: String
},
loginEndpointUrl: {
type: String
},
registrationEndpointUrl: {
type: String
},
forgottenPasswordEndpointUrl: {
type: String
},
applicationIndexEndpointUrl: {
type: String
},
{% endblock properties %}
{% block observers %}
{% endblock observers %}
{% block code %}
{% endblock code %}