Merge branch 'data_migrations' of gimli.ms.mff.cuni.cz:/akce/mam/git/mamweb into data_migrations
This commit is contained in:
commit
5f66adafba
5 changed files with 28 additions and 2 deletions
6
Makefile
6
Makefile
|
@ -141,3 +141,9 @@ sync_local_db:
|
|||
|
||||
# Sync database and media. See above lines
|
||||
sync_local: sync_local_media sync_local_db
|
||||
|
||||
# Push local compiled Vue to gimli test site
|
||||
push_compiled_vue_to_test:
|
||||
scp vue_frontend/webpack-stats.json mam-web@gimli:/akce/mam/www/mamweb-test/vue_frontend/
|
||||
rsync -ave ssh seminar/static/seminar/vue mam-web@gimli:/akce/mam/www/mamweb-test/seminar/static/seminar/
|
||||
ssh mam-web@gimli.ms.mff.cuni.cz 'cd /akce/mam/www/mamweb-test/ && . env/bin/activate && ./manage.py collectstatic --noinput'
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{% extends "base.html" %}
|
||||
{% load render_bundle from webpack_loader %}
|
||||
|
||||
{% block content %}
|
||||
<div>
|
||||
|
@ -48,6 +49,14 @@
|
|||
</div>
|
||||
{% endif %}
|
||||
|
||||
<script id="vuedata" type="application/json">{"treenode":{{cislo.cislonode.id}}}</script>
|
||||
<div id="app">
|
||||
<app></app>
|
||||
</div>
|
||||
{% render_bundle 'chunk-vendors' %}
|
||||
{% render_bundle 'vue_app_01' %}
|
||||
|
||||
|
||||
{% if cislo.verejna_vysledkovka %}
|
||||
<h2>Výsledkovka</h2>
|
||||
|
||||
|
|
|
@ -31,10 +31,15 @@ export default {
|
|||
}),
|
||||
props:{
|
||||
tnid: Number,
|
||||
tnsource: String,
|
||||
editorMode: Boolean,
|
||||
debugMode: Boolean,
|
||||
},
|
||||
mounted: function() {
|
||||
if (this.tnsource && this.tnsource=='inline'){
|
||||
let data = JSON.parse(document.getElementById('vuedata').textContent);
|
||||
this.tnid = data.treenode;
|
||||
}
|
||||
this.getArticles();
|
||||
this.$root.$on('updateData',(arg) => {
|
||||
console.log(arg);
|
||||
|
|
|
@ -35,6 +35,7 @@ export default {
|
|||
item: Object,
|
||||
create: Boolean,
|
||||
showSelect: Boolean,
|
||||
editorMode: Boolean,
|
||||
},
|
||||
mounted: function(){
|
||||
if (this.item.node.uloha === null){
|
||||
|
@ -71,4 +72,4 @@ export default {
|
|||
.upravit {
|
||||
margin-top:-40px;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
|
@ -22,7 +22,12 @@ export default new Router({
|
|||
name: 'treenode_zadani',
|
||||
props: {'tnid': 23},
|
||||
component: TreeNodeRoot
|
||||
},
|
||||
}, {
|
||||
path: '/cislo/:cislo',
|
||||
name: 'treenode_cislo',
|
||||
props: {'tnsource':'inline'},
|
||||
component: TreeNodeRoot
|
||||
}
|
||||
]
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue