Add registration and login templates plus UI stuff, moderation
This commit is contained in:
@ -1,6 +1,5 @@
|
||||
{% extends "map/base_with_jumbo.html" %}
|
||||
{% extends "base_with_jumbo.html" %}
|
||||
{% load bootstrap3 %}
|
||||
{% load compress %}
|
||||
{% load i18n %}
|
||||
{% load leaflet_tags %}
|
||||
|
||||
@ -46,9 +45,9 @@
|
||||
onEachFeature: function (feature, layer) {
|
||||
var modalname = "case-study-"+feature.id
|
||||
layer.bindPopup(
|
||||
"<h3>"+feature.properties.project_name+"</h3>"+
|
||||
"<button type='button' class='btn btn-primary btn-block' data-toggle='modal' data-target='#"+modalname+"'>"
|
||||
+"{% trans "Quick View" %}"+"</button>"
|
||||
"<p>"+feature.properties.entry_name+"</p>"+
|
||||
"<a class='btn btn-primary' href='case-study/"+feature.properties.slug+"' role='button'>"
|
||||
+"{% trans "View" %}"+"</a>"
|
||||
);
|
||||
var modal = create(
|
||||
"<div class='modal fade' id='"+modalname+"' tabindex='-1' role='dialog' aria-labelledby='"+modalname+"-label'>"+
|
||||
|
||||
Reference in New Issue
Block a user