Merge pull request #143 from DanielGrams/issue/141-org-page-2

Add organization landing page #141
This commit is contained in:
Daniel Grams 2021-03-15 15:01:16 +01:00 committed by GitHub
commit c468ca07fd
3 changed files with 4 additions and 3 deletions

View File

@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'javascript', 'python' ]
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

File diff suppressed because one or more lines are too long

View File

@ -5,9 +5,10 @@
{% block styles %}
<link href="https://unpkg.com/@angular/material@2.0.0-beta.8/prebuilt-themes/indigo-pink.css" rel="stylesheet">
{% endblock %}
{% block content_container_attribs %}{% endblock %}
{% block content %}
<organization-landing-page organizationId="{{ organization.id }}"></organization-landing-page>
<organization-landing-page basepath="{{ url_for('home', _external=True) }}" organizationId="{{ organization.id }}"></organization-landing-page>
<script type="text/javascript" src="{{ url_for('static', filename='organization-landing-page.js')}}"></script>
{% endblock %}