-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
5184e8a
commit 4c541dd
Showing
14 changed files
with
175 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 3.0.3 on 2020-05-05 02:25 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('mdi', '0061_organization_tools'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='organization', | ||
name='stage', | ||
field=models.ForeignKey(blank=True, default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='mdi.Stage'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{% load static %} | ||
<footer class="content-info"> | ||
<div class="container"> | ||
<div class="columns"> | ||
<div class="column"> | ||
<a class="logo link--inverse" rel="external" href="https://platform.coop/"> | ||
<svg class="logo__image" viewBox="0 0 282.08 78.75" aria-hidden="true" focusable="false"> | ||
<use href="{% static 'maps/images/logo.svg#logo' %}" /> | ||
</svg> | ||
<span class="screen-reader-text">Platform Cooperativism Consortium</span> | ||
</a> | ||
<div class="nav"> | ||
<p><a class="link--inverse" href="https://platform.coop/open-access-and-privacy-policy/">Our Open Access & Privacy Policy</a></p> | ||
<p><a class="link--inverse" href="https://platform.coop/diversity-inclusion/">Our Commitment to Diversity and Inclusion</a></p> | ||
</div> | ||
</div> | ||
<div class="column"> | ||
<div class="h4"><a rel="external" class="link--inverse" href="https://platform.coop/contact-us/">Contact us</a></div> | ||
<div> | ||
<strong>Email</strong><br> | ||
<a class="link--inverse" href="mailto:[email protected]" rel="external">[email protected]</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
<script src="{% static 'maps/dist/js/site.js' %}"></script> | ||
<script> | ||
const menu = document.querySelector('.menu'); | ||
const menuToggle = document.querySelector('.menu-toggle'); | ||
|
||
if (menu && menuToggle) { | ||
new Pinecone.Menu(menu, menuToggle); | ||
} | ||
|
||
const icons = document.querySelectorAll( 'svg' ); | ||
if (icons) { | ||
Array.prototype.forEach.call(icons, icon => { | ||
new Pinecone.Icon(icon); | ||
}); | ||
} | ||
|
||
const searchToggle = document.querySelector('.search-toggle'); | ||
if (searchToggle) { | ||
new Pinecone.SearchToggle(searchToggle, searchToggle.nextElementSibling); | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
{% load static %} | ||
<header role="banner"> | ||
<div class="container"> | ||
<a class="link link--brand" aria-current="page" href="{% url 'index' %}"> | ||
<a class="link link--brand" aria-current="page" href="#"> | ||
<svg class="icon icon--pcc icon--lg" viewBox="0 0 32 32" aria-hidden="" focusable=""> | ||
<use href="{% static 'maps/images/pcc.svg#pcc' %}" /> | ||
</svg> | ||
<span class="brand__title screen-reader-text">Platform Cooperatives Worldwide</span></a> | ||
<span class="brand__title screen-reader-text">2020 Survey of the International Cooperative Digital Ecosystem</span></a> | ||
<div class="inner"> | ||
2020 Survey of the International Cooperative Digital Ecosystem | ||
</div> | ||
</div> | ||
</header> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters